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:

Verified
Correct Answer:
Verified
Q179: Which of the following is NOT true
Q180: Which of the following lines of code
Q181: Which of the following is NOT correct
Q182: On which of the following thread does
Q183: Which method is used to close an
Q185: Which of the following is NOT a
Q186: Which of the following add a click
Q187: Which of the following Gradle statements adds
Q188: Which parameters does the system pass to
Q189: What does the src folder contain?<br>A) Image