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
Which of the following is the correct syntax for adding CardView to a layout file?
(Multiple Choice)
4.9/5
(31)
What is the name of the folder that contains the R.java file?
(Multiple Choice)
4.8/5
(33)
Which of the following are layout-related methods called by the framework on views, and you can override them when customizing a view? (Choose two)
(Multiple Choice)
4.9/5
(36)
Which of the following is required to allow Android Studio to interact with a custom view?
(Multiple Choice)
4.8/5
(36)
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.mkyong.android"
Android:versionCode="1"
Android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.WebActivity " />
<application android:icon="@drawable/ic_launcher"
Android:label="@string/app_name" >
<activity
Android:name=".WebViewActivity"
Android:theme="@android:style/Theme.NoTitleBar" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest> Supposing the application connects to the internet at startup, which of the following is true?
(Multiple Choice)
4.9/5
(30)
Which of these is the incorrect method for an Application to save local data?
(Multiple Choice)
4.7/5
(32)
Which of the following is the base class of all layout UI widgets?
(Multiple Choice)
4.7/5
(35)
Which of the following methods are invoked when a Broadcast Receiver receives a message?
(Multiple Choice)
4.8/5
(39)
Which of the following is correct about Runtime permissions?
(Multiple Choice)
4.9/5
(36)
Which of the following Activity methods is invoked when the user clicks on an options menu item?
(Multiple Choice)
4.9/5
(36)
Which of the following is true about the Dialog class? (Choose two.)
(Multiple Choice)
5.0/5
(32)
Which of the following is required for getting the best output from performance profiling tools in Android Studio?
(Multiple Choice)
4.9/5
(33)
Which of the following is not included in the Android application framework?
(Multiple Choice)
5.0/5
(44)
Which of the following is NOT true about SQLiteOpenHelper class? (Choose two)
(Multiple Choice)
4.8/5
(30)
Which of the following lines of code is used to pass a value to the next activity?
(Multiple Choice)
4.8/5
(38)
Which of the following is NOT true about a content provider?
(Multiple Choice)
4.9/5
(38)
The DalvikVM core libraries are a subset of which of the following?
(Multiple Choice)
4.8/5
(36)
Which UI does the following code builds? <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
Xmlns:android=http:// schemas.android.com/apk/res/android
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:orientation="vertical" >
<LinearLayout
Android:layout_height="wrap_content"
Android:orientation="horizontal" >
<TextView
Android:id="@+id/textView1"
Android:layout_width="wrap_content"
Android:text="Name:" />
<EditText
android:id="@+id/editText1"
Android:layout_weight="1"
android:ems="10" />
</LinearLayout>
<Button
Android:id="@+id/button1"
Android:text="Post" />
(Multiple Choice)
4.9/5
(27)
GPS provider requires a physical device and cannot be tested on an Emulator.
(True/False)
5.0/5
(37)
Showing 101 - 120 of 224
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)