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

  1. Question 91: Which of the following sets the entire Activity window as a WebView?
  2. Question 92: Consider the following the code: public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.game_menu,…
  3. Question 93: Consider the following AndroidManifest.xml file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" pa…
  4. Question 94: Which of the following is not true about using a WebView in your application?
  5. Question 95: Which of the following is NOT true about class AsyncTask?
  6. Question 96: What does the following line of code do? Toast toast = Toast.makeText(this,"Android ATC", Toast.LENGTH_LONG); toast.setGravity(Gravity.TOP|Gravity.RIGHT, 0, 0)…
  7. Question 97: Which of the following is NOT true about a content provider?
  8. Question 98: Consider the following code snippet to query SQLite database: String[] result_columns = new String[] {KEY_ID, COL1, COL2}; Cursor allRows = myDatabase.query(tr…
  9. Question 99: Which of the following is NOT true about SQLiteOpenHelper class? (Choose two)
  10. Question 100: Which of the following is a rule that developers must always follow when writing multi-threaded Android applications? (Choose two)