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 9 of 11.

  1. Question 81: Which of the following statements about DDMS is incorrect?
  2. Question 82: Which of the following is incorrect about intents?
  3. Question 83: Method onDraw() of class android.view.View has the following signature:
  4. Question 84: To add a new Activity to your application, you need to perform the following steps:
  5. Question 85: To create a customized Adapter for a compound list item layout, you should:
  6. Question 86: When publishing an update to your application to the market, the following must be taken into consideration:
  7. Question 87: Which of these is the incorrect method for an Application to save local data?
  8. Question 88: Which UI does the following code builds? <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android=http:// schemas.android.com/apk/res/android android:…
  9. Question 89: Consider the following code: Intent i = new Intent(this, MainActivity.class); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(i); What best explains…
  10. Question 90: Which of the following lines of code is used to pass a value to the next activity?