CMC Academy PATNA

CMC Academy PATNA

Share

CMC is a Tata Enterprise and a subsidiary of TCS (Tata Consultancy Services).Pioneer in imparting computer education across globe.

CMC is a Tata Enterprise and a subsidiary of TCS (Tata Consultancy Services) is a system engineering and integration company with experience of designing and executing IT Solutions for massive, complex global projects across the value chain. CMC Academy, Education and Training arm of CMC, leverages it's vast domain experience and focuses on providing advanced skills for employment in IT, Finance a

31/07/2014

For details kindly refer newspaper adv in Times of India ascent series dated 30th July.

Photos from CMC Academy PATNA's post 31/07/2014

All the Under Graduates/Graduates/Post Graduates and Working Professionals, walk in to CMC Academy Ashok Rajpath, Opposite Patna College with 2 passport sized photos and marksheets to avail GYAN NIDHI Scholarship upto Rs 40000 applicable on all courses at CMC(Hardware and Networking; Software courses- .Net/Java/Android, Big Data Developer; Financial Accounting; Banking & Finance*)

Walk-in for the test and registration.For details Call on 9334272626

Photos 27/06/2014

B'day celebration of our Student Mr Saquib Ahsan in our Institute CMC Academy,Ashok Rajpath Centre,Patna.We wish him a bright future ahead...Regards....Team CMC

08/05/2014

FAQ's on Android by interviewers:

Android has the largest installed user base of any mobile platform in the world. As a result, developers who have mastered the OS are in great demand. Of course, when it comes to getting a job, you have to demonstrate your expertise, your passion for the technology and pass a technical interview to win a top paying job. This can be a bit of a challenge as Android has been updated several times since the first version was released, and also because of device fragmentation as each manufacturer tweaks the software.

Let’s look at the following set of interview questions designed for fresher as well as experienced candidates.

What are the advantages of Android?
It is modest and potent SDK (Software Development Kit) and importantly it is open source, meaning that Licensing, Distribution or Development fee is not required.
Easy to Import third party Java library.
Android Supports platforms such as Linux, Mac Os, Windows.
Ground-breaking products like Location-Aware services, location of a nearby convenience store etc. are quite helpful.
Components of Android can be reused and replaced by the application framework. Has optimized DVM for mobile devices. SQLite enables to store the data in a structured manner.
Android Supports GSM telephone and Bluetooth, WI-Fi, 3G and EDGE technologies. The development is a combination of a device emulator, debugging tools, memory profiling and plug-in for Eclipse IDE.
What are the different phases of the Activity life cycle?
As an activity transitions from state to state, it is notified of the change by calls to the following protected methods:

void on Create(Bundle saved Instance State)
void on Start()
void on Restart()
void on Resume()
void on Pause()
void on Stop()
void on Destroy()
These seven methods define the entire lifecycle of an activity.

What is an Explicit Intent?
In an explicit intent, the activity that is required to respond to the intent is specified. To be precise, the target components are explicitly designated. This is typically used for application internal messages.

What is an Implicit Intent?
In an implicit intent, only the intent is declared and the activity that can respond to the intent is left to the platform. Here the target component is not declared, hence it is usually used for activating components of other applications as well.

What is an AndroidManifest file?
Applications confirm their components like the .apk file that also holds the application’s code, files, and resources in a manifest file that’s bundled into the Android package. The manifest is a structured XML file and is always named AndroidManifest.xml for all applications. It is also used for naming libraries the application that needs to be linked and identifying any permissions the application expects to be granted.

What’s the difference between a file, a class and an activity in android?
File – It is a chunk of arbitrary information, or resource for storing information.
Class - It’s a compiled form of Java file. Android uses the .class files to produce an executable apk
Activity - An activity is the comparable to a Frame/Window in GUI toolkits. It is not a file or a file type it is just a class that can be extended in Android for loading UI elements on view.
What is the significance of the .dex files?
Android programs are compiled into ‘.dex’ (Dalvik Executable) files, which are zipped into a single .apk file on the device. ‘.dex’ files can be created by translating compiled applications written in Java.

What does ADT stand for?
ADT stands for Android Development Tools. The Android SDK contains several tools and utilities to help create, test and debug your projects.

What are the different tools in Android and explain them?
The Android SDK and Virtual Device Manager:
It is used to create and manage Android Virtual Devices (AVD) and SDK packages. The AVD holds an emulator, letting you specify supported SDK version, screen resolution, SD card storage available and available hardware abilities such as touch screens and GPS.

The Android Emulator:
Android Emulator is an implementation of the Android virtual machine designed to run within a virtual device on the development computer. It is used for testing and debugging Android applications.

Dalvik Debug Monitoring Service (DDMS):
The DDMS is used to monitor and control the Dalvik virtual machines on which the applications are being debugged.

Android Asset Packaging Tool (AAPT):
Builds the distributable Android package files ‘.apk’

Android Debug Bridge(ADB):
Android Debug Bridge is a command-line debugging application distributed along with the SDK. It provides tools to browse the device, copy tools and forward ports for debugging.

What is Dalvik Virtual Machine?
Dalvik is the name of Android’s virtual machine. The Dalvik VM is an interpreter-only virtual machine that executes files in the Dalvik Executable (.dex) format, a format that is optimized for effective storage and memory-mappable ex*****ons. The virtual machine is register-based and can run classes compiled by Java language compiler that have been altered into its native format using the included ‘dx’ tool. The VM runs on top of Posix-compliant operating systems depending on it for performing threading and low level memory management functionalities. The Dalvik core class library is envisioned to provide a familiar development base for those used to programming with Java Standard Edition, but is geared explicitly for the needs of a small mobile device.

What is Android Runtime?
Android comprises of a set of core libraries that provides most of the functionality available in the core libraries of the Java. All Android application runs in its own process, with its own instance of the Dalvik virtual machine. Dalvik has been written in order for the device to run multiple VMs competently. The Dalvik VM executes files in the Dalvik Executable (.dex) format which is boosted for minimal memory footprint. The VM is register-based, and runs classes compiled by a Java language compiler that have been transformed into the ‘.dex’ format by the included ‘dx’ tool.

What is the Open Handset Alliance?
The OHA is a conglomerate of 84 technologies and mobile companies that have joined hands to fast-track innovation in mobile technology and at the same time, offer the end users an improved, cost-effective and richer mobile experience. Members of this alliance include Google, HTC, Sony, Dell, Intel, Motorola, Qualcomm, Texas Instruments, Samsung, LG, T-Mobile, Nvidia. The OHA was started on 5th November, 2007 by Google and 34 other companies. Android is the main software of this alliance.

What is a Service?
A Service is an application component representing either an application’s intent to perform a longer-running operation without interacting with the user or to provide functionality for other applications to use. Services run without a dedicated GUI, but like Activities and Broadcast Receivers, they are executable in the main thread of the application’s process. A Service could be a facility for an application to expose some of its functionality to other applications.

What is the difference between Service and Thread?
Service is like an Activity but has no interface. For example, for fetching information on weather, blank activity will not be created. Here Service will be used. It is also known as Background Service because it performs tasks in background.

A Thread is a concurrent unit of ex*****on. Take note that the UI cannot be updated from a Thread. For this a Handler must be used.

What is a Toast Notification?
Toast notification is a message that pops up on the window. It only covers the expanse of space required for the message and the user’s recent activity remains visible and interactive. The notification automatically fades in and out and does not accept interaction events.

What are the other Notifications?
The other notifications are:

Status Bar Notification: Used for persistent reminders that originate from the background and request for user’s response.
Dialog Notification: Used for Activity-related notifications.
What is the significance of XML-based layouts?
XML-based layouts provides consistent and somewhat a standard means of setting GUI definition format. As a general practice, the layout details are placed in XML files, whereas other items are placed in source files.

What are Containers?
Containers hold objects and widgets together, depending on which specific items are needed and in what particular arrangement. Containers may hold labels, fields, buttons, e.t.c

What are the drawbacks of Android?
Android is an open-source platform and at the same time different Operating Systems have been released for different mobile devices. This provides no clear picture on how applications can adapt with different OS versions and upgrades. An app that runs on a particular version of Android OS may or may not run on another.

Another limitation is that, mobile devices comes in different size and forms. Here it becomes a challenge for developers to create apps that can auto-correct to the right screen and other feature of that particular mobile device.

What is ADB?
ADB is abbreviation of Android Debug Bridge. It provides developers the power to execute remote shell commands. Its basic function is to allow and control communication, to and fro from the emulator port.

What are the four essential states of an activity?
Active – If the Activity is in the foreground.
Paused – If the Activity is in the background and is still visible.
Stopped – If the Activity is not visible, therefore is hidden or concealed by another Activity.
Destroyed – When the Activity process is completed terminated.
What is ANR?
ANR is the acronym for Application Not Responding. This is a dialog that appears to the user whenever an application has been unresponsive for an extended period of time.

How are escape characters used as attribute?
Escape characters when preceded by double backslashes can be used as an attribute. For example, a newline character is created using ‘\\n’

When does other qualifiers in multiple source take precedence over Locale?
This happens at two instances: MCC (mobile country code) and MNC (mobile network code) qualifiers.

What is the correct way of setting up an Android-powered device for app development?
The following are steps need to be followed prior to actual application development in an Android-powered device:

Declare application as “debuggable” in Android Manifest.
Turn on “USB Debugging” on your device.
Set up system to detect your device.
What are the steps involved in creating a bounded service through AIDL?
Create the ‘.aidl’ file which defines the programming interface
Implement the interface by extending the inner abstract Stub class as well as embedding its methods.
Describe the interface by implementing the Service to the clients.
What are the different data types supported by AIDL?
String, CharSequence, List and Map. All built-in Java data types like Int, Long, Char and Boolean are also supported by AIDL

What is a Fragment?
A fragment is a portion of an activity. It is flexible in a sense that it can moved around or combined with other fragments in a single activity. Fragments are also reusable.

Can Fragments be added without using a User Interface?
Yes, this can be done when creating a background behaviour for a particular activity. This can be done by using add (Fragment, string) method to add a fragment from the activity.

How to remove icons and widgets from the main screen of an Android device?
To remove an icon, press and hold that icon. Then drag it towards the lower part of the screen where the remove button appears.

Do all mobile phones support the latest Android Operating System?
Some Android phones lets you to upgrade to higher Operating System version. However, not all upgrades allows you to get the latest version. It depends mainly on whether it can support the newer features available in the latest version.

What is a Portable Wi-Fi Hotspot?
Portable Wi-Fi Hotspots allow you to share your mobile internet connection with other wireless devices. For example, your Android-powered phone can be used as a Wi-Fi Hotspot to make your laptop connect to the internet.

What is the variance between a regular Bitmap and a Nine-Patch image?
A Nine-patch image allows resizing. The Nine-patch refers to the way you can resize the image: 4 corners that are unscaled, 4 edges that are scaled in 1 axis, and the middle one that can be scaled into both axes.

What are the exemptions in Android?
InflateException : When an error conditions occur this exception is thrown.
Surface.OutOfResourceException: When a Surface is not created or resized, this exception is thrown.
SurfaceHolder.BadSurfaceTypeException: When invoked on a Surface ‘SURFACE_TYPE_PUSH_BUFFERS’, this exception is thrown from lockCanvas() method.
WindowManager.BadTokenException: This exception is thrown at the time of trying to view an invalid WindowManager.LayoutParamstoken.

Photos 07/05/2014

We take extreme pleasure to announce Placement Oriented Diploma in Android Programming at CMC Ashok Rajpath, Patna. Registrations are going on. For details contact us @ 9334272626/ 0612 3222626.

Photos 06/05/2014

Interesting fact about android.

Today, it is more difficult not to know android than it is to know the most popular operating system in the smartphone world. Google has brought the operating system a long way to make it the market leader in a very tight market which has surpassed the feature phones.

With a market share of 81.9% in the smartphone market in the last quarter (according to Gartner), it is safe to say Android is dominating the smartphone market. However, there are some facts you may not have heard before about Google’s operating system.

Google did not start Android

The Android operating system was developed by Android Inc. which was established in October 2003. Android Inc. which was founded by Andy Rubin, Chris White, Nick Sears and Rich Miner was later bought by Google who had been backing the company all along. The deal was struck in August 2005 at a price of $50 million.

Android officially launched in 2007

Google officially launched the operating system in November 2007. The operating system had initially been developed for cameras but Google saw a potential in the usage of the OS on smartphones which has come to pass today.

First Smartphone

The first ever smartphone to run on the Android operating system was the HTC Dream or T-Mobile G1 which was launched into the market in 2008.

Android has over a billion activations

Google’s Vice President for Android, Sundar Pichai, announced earlier in September this year that the Android operating system has attained over a billion activations on devices ranging from smartphones to tablets.

Naming

Apart from Android 1.0 and 1.1, all other Android versions have been named after sweet treats. Cupcake, Donut, Ice Cream Sandwich to name a few.

Naming Order

Android versions have been following an alphabetical order in their naming but many have failed to notice this. Android Astro (1.0) was followed by Bender (1.1) followed by Cupcake (1.5). This was followed by Donut (1.6), Éclair (2.0), Froyo (2.2.x), and Gingerbread (2.3.x). This was before Honeycomb (3.x), Ice Cream Sandwich (4.0.x) and Jelly Bean (4.3) entered the equation. Google announced the KitKat (4.4) recently as its latest OS. L..?

Android is open source

With Google being a member of Open Handset Alliance (OHA), android has given users or interested party access to modify the source code of the operating system. This has allowed users and smartphone manufacturers great flexibility in adding features to the operating system.

Android is free

Google offers Android operating system to smartphone manufacturers without payment for its license.

Google gains from Android

Despite offering the Android software free to smartphone manufacturers, Google will likely achieve its aim of becoming the mobile advertising king through android devices. Google makes its biggest revenue from advertising and this will pay off in the big way with the exodus of users from PCs to smartphones and tablets. It must be noted that Android dominates both categories.

A TATA Enterprise 04/04/2014

Announcing admission for Batch launch in Placement Oriented "Diploma in Banking and Finance" on 10th April at CMC Academy, a TATA Enterprise ; Ashok Rajpath" .

Besides, we have tie-ups with all Pvt Sector Banks and reputed Financial Institutions. We assure you placement upon the completion of programs along with grooming and mock HR sessions from Industry Experts. Please refer to our advertisement in Times of India dated 6th april 2014.

Please feel free to contact us if you have doubts regarding the certification.
For further details, visit our website http://www.cmcacademy.com/.

Centre Address: 2nd Floor, CMC Academy
Opposite Patna College, Above SBI ATM, Ashok Rajpath

A TATA Enterprise

16/03/2014

CMC ACADEMY, Ashok Rajpath wishes all the students a very Happy and Colourful Holi!!!

14/03/2014

Dear Students, Get your Minor Summer Project done from a team of experts from CMC and get certified @ CMC... For details contact 9334272626 and visit CMC Academy PATNA

10/03/2014

Dear Students,

CMC Academy PATNA is very pleased to announce that after overwhelming response from you all, we are launching our 2nd batch of EDGE.. Queries are welcome from you.. We are working at your placements and wish all the students good luck getting trained at CMC!!!!! For registrations in the 2nd batch, call us at 9334272626...

07/03/2014

And finally....invite all Engineering students for their summer projects at a TATA Enterprise. Get graded by CMC and complete your project under CMC's stalwarts' supervision. So, call and book your topic. We have plethora of options for you across all branches and from wide range of topics. Call us on 9334272626 and visit our Centre at CMC Academy PATNA, Ashok Rajpath

Want your school to be the top-listed School/college in Patna?

Click here to claim your Sponsored Listing.

Location

Telephone

Address


CMC Academy, Tata Enterprise;2nd Floor, Opposite Patna College, Ashok Rajpath
Patna
800004