Collection of advanced android quiz questions that covers most of importants android features and android coding
This quiz is in Android quiz collection.
Start quizWhich of the following is not a ContentProvider provided natively by Android?
Consider the following the code:
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.game_menu, menu);
return true;
}
Which of the following is true about the code above?
Which of the following is true about implicit intents? (Choose two)
You can create a custom view by extending class:
Which of the following is true about this code snippet? (Choose two)
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel: 555-1234"));
startActivity(intent);
Which of these is the correct explanation regarding the following methods?
(1)android.content.Context.sendBroadcast
(2)android.content.Context.startActivity
What Eclipse plugin is required to develop Android application?
Which of the following statements about DDMS is incorrect?
During an Activity life-cycle, what is the first callback method invoked by the system?
Which manifest file permission you should add to allow your application to read the device's address book?
How to enable JavaScript in WebView?
Which of the following is NOT true about onMeasure() method of class View?
Which of the following is NOT true about the SharedPreferences interface?
By using AsyncTask, do we need to add any custom handler to publish the result to UI thread?
Which of these is the incorrect explanation of the Android SDK and AVD Manager?
Which is the correct explanation of ListView?
Which of the following is the base class of all UI components?
Which of the following is a rule that developers must always follow when writing multi-threaded Android applications? (Choose two)
What is the parent class of all Activity widgets?
Which of the following tools creates certificates for signing Android applications?
Which of these is the incorrect method for an Application to save local data?
Which of the following classes is used by Intent to transfer data between different android component
© 2017 QuizBucket.org