Android Certification Training Course
- 64k Enrolled Learners
- Weekend
- Live Class
This is a multi-part series, all focusing on Android interview questions, for both fresher and experienced as well. This list has been put together after careful research and under the thorough guidance of Android Certification experts, who have worked in the industry for several years and have conducted many interviews for different Android job roles.
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.
Advantage | Description |
Modest & Potent | 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 | Easy to Import third party Java library. |
Multi-platform Support | Android Supports platforms such as Linux, Mac Os, Windows. |
Useful Products | Ground-breaking products like Location-Aware services, location of a nearby convenience store etc. are quite helpful. |
Reusable | 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. |
Technology Support | 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. |
As an activity transitions from state to state, it is notified of the change by calls to the following protected methods:
These seven methods define the entire lifecycle of an activity.
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.
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.
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.
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.
ADT stands for Android Development Tools. The Android SDK contains several tools and utilities to help create, test and debug your projects.
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.
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.
The DDMS is used to monitor and control the Dalvik virtual machines on which the applications are being debugged.
Builds the distributable Android package files ‘.apk’
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.
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 executions. 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.
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.
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.
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.
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 execution. Take note that the UI cannot be updated from a Thread. For this a Handler must be used.
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.
The other notifications are:
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.
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
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.
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.
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.
Escape characters when preceded by double backslashes can be used as an attribute. For example, a newline character is created using ‘n’
This happens at two instances: MCC (mobile country code) and MNC (mobile network code) qualifiers.
The following are steps need to be followed prior to actual application development in an Android-powered device:
String, CharSequence, List and Map. All built-in Java data types like Int, Long, Char and Boolean are also supported by AIDL
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.
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.
To remove an icon, press and hold that icon. Then drag it towards the lower part of the screen where the remove button appears.
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.
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.
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.
Got a question for us? Please mention it in the comments section and we will get back to you.
Related Posts:
Start your training on Android Development
Android for Beginners: Interview Questions and Answers.
Course Name | Date | |
---|---|---|
Android Certification Training Course | Class Starts on 4th March,2023 4th March SAT&SUN (Weekend Batch) | View Details |
Android Certification Training Course | Class Starts on 6th May,2023 6th May SAT&SUN (Weekend Batch) | View Details |
edureka.co
really nice post and so much informative thanks… for more Android Interview Questions, visit us.
Nice collection of questions, I found some advanced interview questions at http://chikkooos.blogspot.jp/p/advanced-android-interview-questions.html, might be useful for someone