Android fundamental quiz

Android apps are written in the Java programming language. The Android SDK tools compile your code along with any data and resource files into an APK, an Android package, which is an archive file with an .apk suffix. One APK file contains all the contents of an Android app and is the file that Android-powered devices use to install the app

This quiz is in Android quiz collection.

Start quiz
  • 1.

    Which of the following are Android security features?

  • 2.

    Which of following are valid types of app components?

  • 3.

    Select all true statements:

    A - Keeping track of what the user currently cares about (what is on screen) to ensure that the system keeps running the process that is hosting the activity.

    B - Knowing that previously used processes contain things the user may return to (stopped activities), and thus more highly prioritize keeping those processes around.

    C - Helping the app handle having its process killed so the user can return to activities with their previous state restored.

  • 4.

    A service in android application will run on it's own process

  • 5.

    What can Broadcast receivers do?

  • 6.

    A broadcast receiver is implemented as a subclass of BroadcastReceiver and each broadcast is delivered as an _______ object

  • 7.

    From android 5.0 how do you schedule actions?

  • 8.

    How does system know that acomponent exists?

  • 9.

    What is the primary task of the manifest file?

  • 10.

    All broadcast receivers must be regisered in the manifest file

  • 11.

    What does the manifest do in addition to declaring the app's components?

  • 12.

    Can we declare both software and hardware requirements for an app?

  • 13.

    Which of these is incorrect explanation of android SDK and AVD manager?

  • 14.

    Which of following is incorrect about LogCat tool?

  • 15.

    What is the name of class used by Intent to store additional information?

  • 16.

    Which of following is a callback method that inflates and options menu from file res/menu/menu.xml?

  • 17.

    How to kill an activity in Android?

  • 18.

    What are the layouts available in android?

  • 19.

    How to store heavy structured data in android?

  • 20.

    What is an HTTP client class in android?

  • 21.

    How to find the JSON element length in android JSON?

  • 22.

    What are the debugging techniques available in android?

  • 23.

    What is the life cycle of services in android?

  • 24.

    Which permissions are required to get a location in android?

  • 25.

    Android is based on which kernel?

  • 26.

    Consider the following code:

    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_VIEW);
    intent.setData(android.net.Uri.parse("http://www.androidatc.com"));
    startActivity(intent);

    Which of the following is correct about the code above?

  • 27.

    Which configuration file holds the permission to use the internet?

© 2017 QuizBucket.org