Android Application Development (AND-401) Free Practice Exam Questions

109 real Android Application Development (AND-401) exam questions with answers and AI explanations. Android ATC certification prep — page 2 of 11.

  1. Question 11: What does the src folder contain?
  2. Question 12: Which file specifies the minimum required Android SDK version your application supports?
  3. Question 13: What is the parent class of all Activity widgets?
  4. Question 14: What is the name of the class used by Intent to store additional information?
  5. Question 15: Which is not included in the Android application framework?
  6. Question 16: What Eclipse plugin is required to develop Android application?
  7. Question 17: A developer can create a custom view by extending class Activity.
  8. Question 18: Which of these files contains text values that you can use in your application?
  9. Question 19: What does the Android project folder "res/" contain?
  10. Question 20: What does this code do? Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(android.net.Uri.parse("http://www.androidatc.com"));…