Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam AND-401 topic 1 question 80 discussion

Actual exam question from AndroidATC's AND-401
Question #: 80
Topic #: 1
[All AND-401 Questions]

Which of the following is the correct way to add access permission to your application?

  • A. Add a <uses-permission> tag as a child tag of the <manifest> tag in AndroidManifest.xml
  • B. Add a <add-permission> tag as a child tag of the <manifest> tag in AndroidManifest.xml.
  • C. Add a <uses-permission> tag as a child tag of the <application> tag in AndroidManifest.xml.
  • D. add a <permission> tag as a child tag of the <application> tag in AndroidManifest.xml
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️
If an application needs access to a feature protected by a permission, it must declare that it requires that permission with a <uses-permission> element in the manifest. Then, when the application is installed on the device, the installer determines whether or not to grant the requested permission by checking the authorities that signed the application's certificates and, in some cases, asking the user. If the permission is granted, the application is able to use the protected features. If not, its attempts to access those features will simply fail without any notification to the user.
References:
http://developer.android.com/guide/topics/manifest/manifest-intro.html

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Mmadi
1 year, 4 months ago
A. Add a <uses-permission> tag as a child tag of the <manifest> tag in AndroidManifest.xml
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...