Premium

Associate Android Developer Certification Questions and Answer (Dumps and Practice Questions)



Question : Which does not have a lifecycle?

 : Which does not have a lifecycle?
1. Service

2. MediaPlayer

3. Access Mostly Uused Products by 50000+ Subscribers

4. Activity

Correct Answer : Get Lastest Questions and Answer :
Explanation: ontent providers are one of the primary building blocks of Android applications, providing content to applications. They encapsulate data and provide it to applications through the single ContentResolver interface. A content provider is only required if you need to share data between multiple applications. For example, the contacts data is used by multiple applications and must be stored in a content provider. If you don't need to share data amongst multiple applications you can use a database directly via SQLiteDatabase.

When a request is made via a ContentResolver the system inspects the authority of the given URI and passes the request to the content provider registered with the authority. The content provider can interpret the rest of the URI however it wants. The UriMatcher class is helpful for parsing URIs.
The primary methods that need to be implemented are:

onCreate() which is called to initialize the provider
query(Uri, String[], String, String[], String) which returns data to the caller
insert(Uri, ContentValues) which inserts new data into the content provider
update(Uri, ContentValues, String, String[]) which updates existing data in the content provider
delete(Uri, String, String[]) which deletes data from the content provider
getType(Uri) which returns the MIME type of data in the content provider




Question : Which of these is the correct explanation of SQLite?

 : Which of these is the correct explanation of SQLite?
1. It is an object database.

2. It is client-server format.

3. Access Mostly Uused Products by 50000+ Subscribers

4. It can be accessed by other applications through ContentProvider

Correct Answer : Get Lastest Questions and Answer :
Explanation:




Question : Which is the processing that cannot be executed by using the emulator during development?

 : Which is the processing that cannot be executed by using the emulator during development?
1. Displaying information of the heap and threads.

2. Emulation of outgoing calls

3. Access Mostly Uused Products by 50000+ Subscribers

4. Receiving E-mail

Correct Answer : Get Lastest Questions and Answer :
Explanation: Open the Email app, and configure an account with it. Then you will be able to send email intents. The Android SDK includes a mobile device emulator - a virtual mobile device that runs on your computer. The emulator lets you develop and test Android applications without using a physical device.


Related Questions


Question : Which of these is the correct explanation of the Android Interface Description Language?

 : Which of these is the correct explanation of the Android Interface Description Language?
1. It enables data exchange between different applications.

2. You cannot use Java primitive types as method parameters.

3. Access Mostly Uused Products by 50000+ Subscribers

4. It provides an environment for executing script languages


Question : Which of these is the incorrect explanation of ProgressDialog?

 : Which of these is the incorrect explanation of ProgressDialog?
1. ProgressDialog inherits from the AlertDialog class.

2. ProgressDialog can be set as 2 types of style: STYLEJHORIZONTAL and STYLE_SPINNER.

3. Access Mostly Uused Products by 50000+ Subscribers

4. ProgressDialog can be freely configured to use a Drawable class to display as its progress bar.


Question : Which of these is the correct function of Traceview?

 : Which of these is the correct function of Traceview?
1. Displays a graphical task execution log.

2. Displays graphically a memory acquisition and release log

3. Access Mostly Uused Products by 50000+ Subscribers

4. Displays graphically the Ul state hierarchy


Question : Which function is not supported by the "android" command?

 : Which function is not supported by the
1. The SDK Update function

2. Functions to create and edit an Android Virtual Device (AVD)

3. Access Mostly Uused Products by 50000+ Subscribers

4. Functions to create and delete an Android project


Question : Which is the permission added to the Android manifest file in order to access GPS?

 : Which is the permission added to the Android manifest file in order to access GPS?
1. ACCESS_FINE_LOCATION

2. ACCESS_COARSE_LOCATION

3. Access Mostly Uused Products by 50000+ Subscribers

4. ACCESS MOCK LOCATION


Question : Which of these is the incorrect explanation of the adb command?

 : Which of these is the incorrect explanation of the adb command?
1. The "adb start-server" command starts the adb server.

2. The "adb devices" command lists connected handsets and emulators.

3. Access Mostly Uused Products by 50000+ Subscribers

4. You install an apk with the "adb install" command