Online Access Free AND-401 Practice Test

Exam Code:AND-401
Exam Name:Android Application Development
Certification Provider:Android
Free Question Number:130
Posted:Sep 03, 2025
Rating
100%

Question 1

What is the parent class of all Activity widgets?

Question 2

To add a new Activity to your application, you need to perform the following steps:

Question 3

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?

Question 4

Which of the following is NOT true about class ListActivity?

Question 5

To create a customized Adapter for a compound list item layout , you should:

Add Comments

Your email address will not be published. Required fields are marked *

insert code
Type the characters from the picture.