Home > Android Programming > Quizzes > AND-401 Exam Practice Test 5
AND-401 Exam Practice Test 5
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 26% Most missed: “What does the following code do?”
AND-401 Exam Practice Test 5
Time left 00:00
25 Questions

1. Which manifest file permission you should add to allow your application to read the device’s address book?
2. Which of these is NOT recommended in the Android Developer's Guide as a method of creating an individual View?
3. What is not true about the AndroidManifest.xml file?
4. Which of these is the incorrect explanation of the Android SDK and AVD Manager?
5. Which of the following tools dumps system log messages including stack traces when the device or emulator throws an error?
6. What is the name of the folder that contains the R.java file?
7. Which of following is incorrect about the Toast class?
8. Which of the following add a click listener to items in a listView?
9. Which of the following is a call-back method that inflates an options menu from file res/menu/menu.xml?
10. Which of these files contains text values that you can use in your application?
11. Which of the following is true about attribute android:windowSoftInputMode of the tag in file AndroidManifest.xml?
12. Which of the following is not a ContentProvider provided natively by Android?
13. Which of the following is NOT true about class AsyncTask?
14. Which of the following is incorrect about intents?
15. Which of these is not defined as a process state?
16. Which of the following is incorrect about ProgressDialog?
17. During an Activity life-cycle, what is the first callback method invoked by the system?
18. Which of the following is not an Android component (i.e. a point from which the system can enter your application)?
19. Which of the following is NOT a valid usage for Intents?
20. Which package of the following does not have classes needed for Android network connections?
21. Which UI does the following code builds?
22. Which of the following is incorrect about the LogCat tool?
23. What two methods you have to override when implementing Android option menus?
24. Which of the following is NOT true about class DefaultHttpClient?
25. Consider the following code: Intent i = new Intent(this, MainActivity.class); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(i); What best explains the code above?