Premium

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



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?


Correct Answer : Get Lastest Questions and Answer :
Explanation:




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

Correct Answer : Get Lastest Questions and Answer :
Explanation:




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

Correct Answer : Get Lastest Questions and Answer :
Explanation: Create an intent with a given action. All other fields (data, type, class) are null. Note that the action must be in a namespace because Intents are used globally in the system -- for example the system VIEW action is android.intent.action.VIEW; an application's custom action would be something like com.google.app.myapp.CUSTOM_ACTION.


Related Questions


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


Question : The following code is a part of an Activity class to create a dialog. Which is the Activity class method used to display this dialog?

01 : @Override
02 : protected Dialog onCreateDialog(int id) {
03 : return new AlertDialog.Builder(this).setMessage("message").create();
04: }


 : The following code is a part of an Activity class to create a dialog. Which is the Activity class method used to display this dialog?
1. void createDialog();

2. void createDialogfint id);

3. Access Mostly Uused Products by 50000+ Subscribers

4. void showDialog(int id);