Exam AND-401 All QuestionsBrowse all questions from this exam
Question 73

Which of the following is not true about tag in AndroidManifest file?

    Correct Answer: C

    The <activity> tag in the AndroidManifest file declares activities that make up part of the application's user interface and behavior. It is contained within the <application> tag and can specify the name of the Activity sub-class that implements the activity. However, it does not declare hardware or software features used by the application. Such declarations are made using <uses-feature> or <uses-permission> tags.

Discussion
MmadiOption: C

C. Declares a single hardware or software feature that is used by the application.