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

Which of the following is a correct Android Manifest statement?

    Correct Answer: C

    The correct Android Manifest statement for requesting permissions must use the exact name attribute for the permission. The correct syntax should be <uses-permission android:name="android.permission.INTERNET"/>. Option C closely follows this correct format, although it should ideally be self-closing. Nevertheless, it correctly specifies the full permission string, which is crucial. Options A, B, and D have errors in the attribute values or formatting which make them incorrect.

Discussion
datvt2412Option: C

C. <uses-permission android:name ="android. permission.Internet"/>

MmadiOption: D

D. <uses-permission android:name ="android. permission .Internet"/>