Solved

Consider the Following AndroidManifest.xml File. ≪?xml Version="1.0" Encoding="utf-8"?>

Question 184

Multiple Choice

Consider the following AndroidManifest.xml file. <?xml version="1.0" encoding="utf-8"?>
<manifest
Xmlns:android="http://schemas.android.com/apk/res/android"   
Package="com.androidatc "   
Android:versionCode="1"   
Android:versionName="1.0" >
<uses-sdk       
Android:minSdkVersion="12"       
Android:targetSdkVersion="17" />
<application       
Android:name="MyApp "       
Android:allowBackup="true"       
Android:icon="@drawable/ic_launcher"       
Android:label="@string/app_name"       
Android:theme="@style/AppTheme" >
<activity         
Android:name="com.androidatc.MainActivity"         
Android:label="@string/app_name"         
Android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-permission android:name="android.permission.INTERNET" />
</application>
</manifest> Which of the following is correct?


A) The application will run as intended.
B) The application will not compile.
C) The application will crash on fetching data from the internet.
D) The app will run in Landscape orientation.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions