Premium

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



Question : Which is not included in the Android application framework?

 : Which is not included in the Android application framework?
1. WindowManager

2. NotificationManager

3. Access Mostly Uused Products by 50000+ Subscribers

4. PackageManager

Correct Answer : Get Lastest Questions and Answer :
Explanation:




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

 : Which is of these is the incorrect explanation of layoutopt?
1. It is a tool used on the command line and does not have GUI.

2. It helps optimize application layout and layout hierarchy.

3. Access Mostly Uused Products by 50000+ Subscribers

4. It can be used as an SDK tool from revision 4 and later

Correct Answer : Get Lastest Questions and Answer :
Explanation:




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

Correct Answer : Get Lastest Questions and Answer :
Explanation: AIDL (Android Interface Definition Language) is similar to other IDLs you might have worked with. It allows you to define the programming interface that both the client and service agree upon in order to communicate with each other using interprocess communication (IPC). On Android, one process cannot normally access the memory of another process. So to talk, they need to decompose their objects into primitives that the operating system can understand, and marshall the objects across that boundary for you. The code to do that marshalling is tedious to write, so Android handles it for you with AIDL.


Related Questions


Question : Which of the following is incorrect about intents?

 : Which of the following is incorrect about intents?
1. They can be used to start an Activity

2. They can be used to start a service

3. Access Mostly Uused Products by 50000+ Subscribers

4. They can be used to start a dialog-themed activity.


Question : Method onDraw() of class android.view.View has the following signature:

 : Method onDraw() of class android.view.View has the following signature:
1. public void onDraw(Color)

2. public void onDraw(Canvas)

3. Access Mostly Uused Products by 50000+ Subscribers

4. public Canvas onDraw()


Question : To add a new Activity to your application, you need to perform the following steps:

 : To add a new Activity to your application, you need to perform the following steps:
1. Create a Java class that extends View, set a layout, and add an Activity tag in AndroidManifest.xml

2. Create layout resource only.

3. Access Mostly Uused Products by 50000+ Subscribers

4. Add an Activity tag to AndroidManifest.xml, and add ACTIVITY permission.


Question : To create a customized Adapter for a compound list item layout, you should:

 : To create a customized Adapter for a compound list item layout, you should:
1. Extend class android.widget.Adapter or any of its descendants then override method getView()

2. Extend class android.widget.ListView or any of its descendants, then override method getView()

3. Access Mostly Uused Products by 50000+ Subscribers

4. Extend class android.widget.Adapter or any of its descendants, then override method getAdapterView().


Question : When publishing an update to your application to the market, the following must be taken into consideration:

 : When publishing an update to your application to the market, the following must be taken into consideration:
1. The package name must be the same, but the .apk may be signed with a different private key.

2. The package name does not have to be the same and the .apk can be signed with a different private key.

3. Access Mostly Uused Products by 50000+ Subscribers

4. The package name does not have to be the same, but the .apk must be signed with the same private key.


Question : Which of these is the incorrect method for an Application to save local data?

 : Which of these is the incorrect method for an Application to save local data?
1. Extend PreferencesActivity and save in an XML file.

2. Save as a file in the local file system.

3. Access Mostly Uused Products by 50000+ Subscribers

4. Save in the hash table file using the Dictionary class.