Multiple choice technology embedded technologies

How do we request permission to access resources from other applications?

  1. Default file

  2. Manifest file

  3. random file

  4. access file

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The AndroidManifest.xml file is where applications declare permissions needed to access resources from other applications or device features. Default file, random file, and access file are not standard Android manifest components. The manifest is read at install time to grant requested permissions.

AI explanation

An Android app requests permission to access resources or APIs belonging to other applications by declaring `entries in itsAndroidManifest.xml` file, which the system checks at install/runtime. There's no separate 'access file' or 'default file' mechanism for this — the manifest is the single declared source of an app's permission requirements.