Premium

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



Question : Which of the following is a correct Android Manifest statement?

 : Which of the following is a correct Android Manifest statement?
1.

2.

3.

4.

Correct Answer : 4
Explanation: Requests a permission that the application must be granted in order for it to operate correctly. Permissions are granted by the user when the application is installed (on devices running Android 5.1 and lower) or while the app is running (on devices running Android 6.0 and higher).
For more information on permissions, see the Permissions section in the introduction and the separate System Permissions API guide. A list of permissions defined by the base platform can be found at android.Manifest.permission.

ATTRIBUTES:
android:name
The name of the permission. It can be a permission defined by the application with the element, a permission defined by another application, or one of the standard system permissions (such as "android.permission.CAMERA" or "android.permission.READ_CONTACTS"). As these examples show, a permission name typically includes the package name as a prefix.
SYNTAX:
android:maxSdkVersion="integer" />




Question : Which of the following is true about attribute android:windowSoftInputMode of the tag in file AndroidManifest.xml?

 : Which of the following is true about attribute android:windowSoftInputMode of the <activity> tag in file AndroidManifest.xml?
1. It specifies whether the window is in full screen or not

2. It adjusts how the main window of the activity interacts with keyboard

3. It adjusts how the window should be launched

4. It adjusts the window orientation

Correct Answer : 2
Explanation: android:windowSoftInputMode
How the main window of the activity interacts with the window containing the on-screen soft keyboard. The setting for this attribute affects two things:
The state of the soft keyboard - whether it is hidden or visible - when the activity becomes the focus of user attention.
The adjustment made to the activity's main window - whether it is resized smaller to make room for the soft keyboard or whether its contents pan to make the current focus visible when part of the window is covered by the soft keyboard.
The setting must be one of the values listed in the following table, or a combination of one "state..." value plus one "adjust..." value. Setting multiple values in either group - multiple "state..." values, for example - has undefined results. Individual values are separated by a vertical bar (|). For example:






Question : Which of the following tools dumps system log messages including stack traces when the device or emulator throws an error?

 : Which of the following tools dumps system log messages including stack traces when the device or emulator throws an error?
1. DDMS

2. Logcat

3. Console

4. ADB

Correct Answer : 2
Explanation: The Android logging system provides a mechanism for collecting and viewing system debug output. Logs from various applications and portions of the system are collected in a series of circular buffers, which then can be viewed and filtered by the logcat command. You can use logcat from an ADB shell to view the log messages.


Related Questions


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


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


Question : Which of these is the correct explanation of the Android license form?

 : Which of these is the correct explanation of the Android license form?
1. It is necessary to register with Android Market and pay a license fee in order to develop a paidfor
application on Android.

2. There is no special provision regarding application license operation on Android.

3. Access Mostly Uused Products by 50000+ Subscribers
not made public.

4. Since Android uses libraries licensed in various ways such as GPL, BSD, and LGPL,
applications developed under Android are subject to the severest license, GPL


Question : Which of these URI schemes is not supported by Android?

 : Which of these URI schemes is not supported by Android?
1. android://

2. content://

3. Access Mostly Uused Products by 50000+ Subscribers

4. market://search?



Question : Which function is not provided by the Android Development Tools Plugin?

 : Which function is not provided by the Android Development Tools Plugin?
1. Creating an Android project

2. Creating supporting resource files

3. Access Mostly Uused Products by 50000+ Subscribers

4. Supporting creation of a View


Question : The following program uses an Intent to open a Web page designated by a Web browser. Which is
the correct code that goes into (1)?

Intent intent = new Intent (" (1) " , Uri.parse("http://www.HadoopExam.com/logo.jpg"));
startActivity(intent);


 : The following program uses an Intent to open a Web page designated by a Web browser. Which is
1. android.intent.VIEW

2. android.intent.action.VIEW

3. Access Mostly Uused Products by 50000+ Subscribers

4. androidJntent.action.View