Android Certified Application Developer - AND-401 - Sample
Android Certified Application Developer - AND-401 - Sample
Q2.What Activity method you use to retrieve a reference to an Android view by using the id
attribute of a resource XML?
A. findViewByReference(int id)
B. findViewById(int id)
C. retrieveResourceById(int id)
D. findViewById(String id)
Answer: B
Q3.Which of the following is not an Android component (i.e. a point from which the system can
enter your application)?
A. Service
B. Activity
C. Layout
D. Content Provider
Answer: C
Q4.During an Activity life-cycle, what is the first callback method invoked by the system?
A. onStop()
B. onStart()
C. onCreate()
D. onRestore()
Answer: C
Q8. Which of the following is not a valid Android resource file name?
A. mylayout.xml
B. myLayout.xml
C.my_layout.xml
D.mylayout1.xml
Answer: B
Q9. Which one of the following is not a valid name for process state?
A. Bound
B. A Visible
C. Foreground
D. Background
Answer: A
Q10. What is the role of the R.java file in an Android application project?
A. It contains all resource IDs allowing the developer to reference them from the code using
integers.
B. It contains instructions to build the Android application project.
C. It contains information about content providers of the Android application.
D. It contains the target SDK version number.
Answer: A
Q13.Which file specifies the minimum required Android SDK version your application supports?
A. main.xml
B. R.java
C. strings.xml
D. build.gradle
Answer: D
Q15. What is the name of the class used by Intent to store additional information?
A. Extra
B. Parcelable
C. Bundle
D. DataStore
Answer: C
Q19.Which of these files contains text values that you can use in your application?
A. AndroidManifest.xml
B. res/Text.xml
C.res/layout/Main.xml
D. res/values/strings.xml
Answer: D
Answer: B
Q23.Which of the following packages does not have classes needed for Android network
connections?
A. java.net
B. org.apache.http
C. android.location
D. android.net
Answer: C
Q24.What is the second layer from top called in the following diagram of Androids Architecture
A. Applications layer.
B. Application framework.
C. Linux kernel.
D. Android runtime.
Answer: B
Q25.Which of the following tools creates certificates for signing Android applications?
A. adb
B. logcat
C. keytool
D. certgen
Answer: C
Which Android permission you should add to allow your application to read the devices address
book?
A. READ_ADDRESS_DATA
B. READ_PHONE_STATE
C. READ_PHONE_CONTACTS
D. READ_CONTACTS
Answer: D
Q26.Which of the following methods is called in an Activity when another activity gets into the
foreground?
A. onStop()
B. onPause()
C. onDestroy()
D. onExit()
Answer: B
Q27.Which of the following attributes is used to set an activity screen to landscape orientation?
A. screenorientation = landscape
B. screenOrientation=landscape
C. android:ScreenOrientation=landscape
D. android:screenOrientation=landscape
Answer: D
B. It will not compile without adding the INTERNET permission the Manifest file.
C. It starts any activity in the application that has a WebView in its layout.
D. When it is executed, the system starts an intent resolution process to start the right Activity.
Answer: D
Q31.Which of the following Android View sub-classes uses the WebKit rendering engine to
display web pages?
A. PageView
B. WebView
C. MapView
D. HttpClient
Answer: B
Q39.Which of the following applies to the onDraw() method of class View? (Choose two)
A. It must be overridden if a customized drawing of a view is required.
B. It takes two parameters: a Canvas and a View.
C. It takes one parameter of type Canvas.
D. It uses the Canvas parameter to draw the border of the activity that contains it.
Answer: A & C
Q40.What is the location of the APK generated by the build system of Android Studio?
A. app/build/apk
B. app/apks
C. app/build/outputs/apk
D. app/intermediates/outputs/apk
Answer: C
Q42.Which of the following statements is incorrect about Android Device Monitor in Android
Studio?
A. You can display a list of currently running threads and select one to check its stack trace.
B. It can add dynamically Google SDK libraries to the Android image running on the emulator.
C. You can forcibly execute garbage collection and check the present heap usage status.
D. You can do simulations of network zone speed and bandwidth limitations.
Answer: B
Q45.To create a blank Wear activity in Android Studio, the project should have a minimum SDK
version >= 20.
A. True
B. False
Answer: A
Q46.To create a customized Adapter for a compound list item layout , you should:
A. Extend class android.widget.Adapter or any of its descendants then override method
getView()
B. Extend class android.widget.ListView or any of its descendants, then override method
getView()
C. Extend class android.widget.AbsAdapter or any of its descendants, then override method
getView()
D. Extend class android.widget.Adapter or any of its descendants, then override method
getAdapterView()
Answer: A
Q47.When publishing an update to your application to the market, the following must be taken
into consideration:
A. The package name must be the same, but the .apk may be signed with a different private
key.
B. The package name does not have to be the same and the .apk can be signed with a different
private key.
C. The package name must be the same and the .apk must be signed with the same private
key.
D. The package name does not have to be the same, but the .apk must be signed with the
same private key.
Answer: C
Q48.Which of these is the incorrect method for an Application to save local data?
A. Extend PreferencesActivity and save in an XML file.
B. Save as a file in the local file system.
C. Save in the database using SQLite.
D. Save in the hash table file using the Dictionary class.
Answer: D
Q49.Which of the following lines of code is used to pass a value to the next activity?
A.Intent i = new Intent(this,newActivity);
i.addExtra(test);
startActivity(i);
B. Intent i = new Intent(this,newActivity);
i.putValue(test);
startActivity(i);
C. Intent i = new Intent(this,newActivity);
i.putValue(value1,test);
startActivity(i);
D. Intent i = new Intent(this,newActivity);
i.putExtra(value1,test);
startActivity(i);
Answer: D
Q50.Which of the following lines of code sets the entire Activity window as a WebView?
A. WebView webview = new WebView(this);
webview.setAsWindow;
B. setContentView(R.layout.webview);
C. WebView webview = new WebView(this);
setContentView(webview);
D.setContentView(http://www.androidatc.com);
Answer: C
Q52.Which of the following is a rule that developers must always follow when writing multithreaded Android applications? (Choose two)
A. A worker thread must not be created from inside the UI thread.
B. Each UI thread must not create more than one worker thread.
C. The UI thread must never be blocked.
D. The Android UI must not be accessed from outside the UI thread.
Answer: C & D
Q54.When the user clicks on an action item in the action bar, which of the following Activity
methods does the system call?
A. onOptionsItemSelected()
B. onOptionsItemClicked()
C. onActionButtonSelected()
D. onActionBarItemSelected()
Answer: A
Q55.Gradle is the build system used in Android Studio. It builds, tests, runs, and packages your
apps.
A. True
B. False
Answer: A
Q56.Which of the following is NOT correct about the Gradle build system of Android Studio?
A. The Gradle build file is called build.gradle.
B. Gradle supports generating only one build variant.
C. Gradle uses the Groovy syntax to configure the build.
D. A build is configured by using elements provided by the Android plugin for Gradle.
Answer: B
Q57.To use the material design features of Android 5.0, you should set the
android:targetSdkVersion attribute to 20 in your applications build.gradle file.
A. True
B. False
Answer: B