Premium

Associate Android Developer Certification Questions and Answer (Dumps and Practice 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

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.




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.

Correct Answer : Get Lastest Questions and Answer :
Explanation: Progress dialogs are very commonly used components in all User Interfaces, when you want to display the progress of a task that is taking up a lot of time, for example a file or an Image download.
In this tutorial will create a ProgressDialog to let the user know the progress and a status of a simulated Image download activity.
We will demonstrate both the Ring and the Bar style of the ProgressDialog component, as well as the use of special tools like Handler to update the value ( progress...) of the bar format.




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

Correct Answer : Get Lastest Questions and Answer :
Explanation: Traceview is a graphical viewer for execution logs saved by your application. Traceview can help you debug your application and profile its performance.


Related Questions


Question : Which of these Activity class methods must be overridden when creating a Menu that is displayed
when the device's Menu button is pressed?

 : Which of these Activity class methods must be overridden when creating a Menu that is displayed
1. onCreateContextMenu

2. onMenuOpened

3. Access Mostly Uused Products by 50000+ Subscribers

4. openOptionsMenu


Question : Which approval is necessary to execute Bluetooth actions such as connection requests,
connection receipt, and data forwarding?

 : Which approval is necessary to execute Bluetooth actions such as connection requests,
1. BLUETOOTH

2. BLUETOOTH_ADMIN

3. Access Mostly Uused Products by 50000+ Subscribers

4. ACCOUNT MANAGER


Question : Which class is used when a sensor is accessed?

 : Which class is used when a sensor is accessed?
1. SensorEventListener

2. SensorEvent

3. Access Mostly Uused Products by 50000+ Subscribers

4. Sensor


Question : Which of these is the incorrect explanation of the Toast class?

 : Which of these is the incorrect explanation of the Toast class?
1. Toast is a simple class for display, and cannot be set with a custom XML-defined layout

2. The display duration time of Toast can be chosen from 2 types, LENGTHJjDNG and LENGTH_SHORT.

3. Access Mostly Uused Products by 50000+ Subscribers

4. Since Toast automatically closes after display, a dismiss () method is not provided


Question : Which ContentProvider does Android not provide as a standard?

 : Which ContentProvider does Android not provide as a standard?
1. A telephone log

2. A database

3. Access Mostly Uused Products by 50000+ Subscribers

4. A contact list


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

 : Which of these is the incorrect explanation of SQLite?
1. There are 5 types of data type stored in column; Null, Integer, Real, Text, and Blob.

2. There are restrictions on some functions of SQLite loaded on Android

3. Access Mostly Uused Products by 50000+ Subscribers

4. SQLite is a database that saves data in a single file