Home > Android Programming > Quizzes > Android Certified Application Developer (AND-401) Test 2
Android Certified Application Developer (AND-401) Test 2
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 11% Most missed: “What is the name of the folder that contains the R.java file?”
Android Certified Application Developer (AND-401) Test 2
Time left 00:00
25 Questions

1. What does the src folder contain?
2. Which of the following makes a ListView Clickable?
3. Which of these is the correct explanation regarding the following methods? (1)android.content.Context.sendBroadcast (2)android.content.Context.startActivity
4. Which of the following is not true about using a WebView in your application?
5. Which of the following classes should be extended to create a custom view?
6. Which of the following tools creates certificates for signing Android applications?
7. 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?
8. Which is not included in the Android application framework?
9. What does the following code do? dialog.getWindow().setFlags(LayoutParams.FLAG_BLUR_BEHIND, LayoutParams.FLAG_BLUR_BEHIND);
10. Which of the following is NOT true about the SharedPreferences interface?
11. When publishing an update to your application to the market, the following must be taken into consideration:
12. Which of following is incorrect about the Toast class?
13. What does the following code achieve? Intent intent = new Intent(FirstActivity.this, SecondActivity.class); startActivityForResult(intent);
14. The DalvikVM core libraries are a subset of which of the following?
15. Javascript is enabled by default in a WebView
16. Which of the following is not a valid Android resource file name?
17. Which of the following are layout-related methods called by the framework on views, and you can override them when customizing a view? (Choose two)
18. Which of the following is not true about tag in AndroidManifest file?
19. Which of the following lines of code starts activity Activity2 from a current activity Activity1?
20. Which of the following sets the entire Activity window as a WebView?
21. How to enable JavaScript in WebView?
22. Which of the following is a rule that developers must always follow when writing multi-threaded Android applications? (Choose two)
23. Which of these is not defined as a process state?
24. What two methods you have to override when implementing Android option menus?
25. Which of the following Activity methods is invoked when the user clicks on an options menu item?