Exam 1: Android Application Development
Exam 1: Android Application Development224 Questions
Exam 2: Android Security Essentials107 Questions
Exam 3: Monetize Android Applications75 Questions
Select questions type
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?
(Multiple Choice)
4.9/5
(36)
Which of the following is NOT a feature of Android Studio?
(Multiple Choice)
4.9/5
(40)
Which of the following add a click listener to items in a listView?
(Multiple Choice)
4.8/5
(30)
Which of the following Gradle statements adds the AppCompat library to an Android application?
(Multiple Choice)
4.7/5
(30)
Which parameters does the system pass to method onReceive( ) of BroadcastReceiver ?
(Multiple Choice)
4.9/5
(37)
Which of the following Classes is responsible for capturing the location using GPS?
(Multiple Choice)
4.9/5
(37)
Consider the following code: Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(android.net.Uri.parse("http://www.androidatc.com")); startActivity(intent); Which of the following is correct about the code above?
(Multiple Choice)
4.8/5
(31)
Which of the following is a correct Android Manifest statement?
(Multiple Choice)
4.9/5
(35)
Which of the following WebView methods allows you to manually load custom HTML markup?
(Multiple Choice)
4.8/5
(33)
Which of the following is NOT a correct constructer for ArrayAdapter?
(Multiple Choice)
4.8/5
(36)
When including a text file in your application to read from as a resource, what is the recommended location of such file?
(Multiple Choice)
4.9/5
(35)
Which of the following is true about object arrayAdapter declared in the code below?
String[] items = {"Item 1","Item 2","Item 3"}; ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, items); listView.setAdapter(arrayAdapter);
(Multiple Choice)
4.7/5
(41)
Which of the following methods can we call in Notification.Builder to add an action?
(Multiple Choice)
4.8/5
(38)
Which of the following lines of codes adds zoom controls to a WebView?
(Multiple Choice)
4.8/5
(36)
Showing 181 - 200 of 224
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)