Android advanced level quiz

Collection of advanced android quiz questions that covers most of importants android features and android coding

This quiz is in Android quiz collection.

Start quiz
  • 1.

    Which of the following is not a ContentProvider provided natively by Android?

  • 2.

    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?

  • 3.

    Which of the following is true about implicit intents? (Choose two)

  • 4.

    You can create a custom view by extending class:

  • 5.

    Which of the following is true about this code snippet? (Choose two)

    Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel: 555-1234"));
    startActivity(intent);

     

  • 6.

    Which of these is the correct explanation regarding the following methods?
    (1)android.content.Context.sendBroadcast
    (2)android.content.Context.startActivity

  • 7.

    What Eclipse plugin is required to develop Android application?

  • 8.

    Which of the following statements about DDMS is incorrect?

  • 9.

    During an Activity life-cycle, what is the first callback method invoked by the system?

  • 10.

    Which manifest file permission you should add to allow your application to read the device's address book?

  • 11.

    How to enable JavaScript in WebView?

  • 12.

    Which of the following is NOT true about onMeasure() method of class View?

  • 13.

    Which of the following is NOT true about the SharedPreferences interface?

  • 14.

    By using AsyncTask, do we need to add any custom handler to publish the result to UI thread?

  • 15.

    Which of these is the incorrect explanation of the Android SDK and AVD Manager?

  • 16.

    Which is the correct explanation of ListView?

  • 17.

    Which of the following is the base class of all UI components?

  • 18.

    Which of the following is a rule that developers must always follow when writing multi-threaded Android applications? (Choose two)

  • 19.

    What is the parent class of all Activity widgets?

  • 20.

    Which of the following tools creates certificates for signing Android applications?

  • 21.

    Which of these is the incorrect method for an Application to save local data?

  • 22.

    Which of the following classes is used by Intent to transfer data between different android component

© 2017 QuizBucket.org