Premium

Associate Android Developer Certification Questions and Answer (Dumps and Practice Questions)



Question : Which of the following statements is correct about SQLite?

 : Which of the following statements is correct about SQLite?
1. It is an object database.

2. It is client-server format.

3. Access Mostly Uused Products by 50000+ Subscribers

4. It can be accessed by other applications through ContentProvider.

Correct Answer : Get Lastest Questions and Answer :
Explanation: To create your custom content provider you have to define a class which extends android.content.ContentProvider. You must declare this class as content provider in the Android manifest file. The corresponding entry must specify the android:authorities attribute which allows identifying the content provider. This authority is the basis for the URI to access data and must be unique.

android:authorities="de.vogella.android.todos.contentprovider"
android:name=".contentprovider.MyTodoContentProvider" >

Your content provider must implement several methods, e.g. query(), insert(), update(), delete(), getType() and onCreate(). In case you do not support certain methods its good practice to throw an UnsupportedOperationException().

The query() method must return a Cursor object.






Question : When including a text file in your application to read from as a resource, what is the recommended location of such file?

 : When including a text file in your application to read from as a resource, what is the recommended location of such file?
1. res/anim

2. res/files

3. Access Mostly Uused Products by 50000+ Subscribers

4. res/values

Correct Answer : Get Lastest Questions and Answer :
Explanation: raw/
Arbitrary files to save in their raw form. To open these resources with a raw InputStream, call Resources.openRawResource() with the resource ID, which is R.raw.filename.

However, if you need access to original file names and file hierarchy, you might consider saving some resources in the assets/ directory (instead of res/raw/). Files in assets/ are not given a resource ID, so you can read them only using AssetManager.




Question : Which of the following statements about DDMS is incorrect?

 : Which of the following statements about DDMS is incorrect?
1. You can display a list of currently running threads and select one to check its stack trace.

2. You can use it to acquire screenshots of a terminal.

3. Access Mostly Uused Products by 50000+ Subscribers

4. You can do simulations of network zone speed and bandwidth limitations.

Correct Answer : Get Lastest Questions and Answer :
Explanation: Android Studio includes a debugging tool called the Dalvik Debug Monitor Server (DDMS), which provides port-forwarding services, screen capture on the device, thread and heap information on the device, logcat, process, and radio state information, incoming call and SMS spoofing, location data spoofing, and more. This page provides a modest discussion of DDMS features; it is not an exhaustive exploration of all the features and capabilities.


Related Questions


Question : What is the parent class of all Activity widgets?


 : What is the parent class of all Activity widgets?
1. ViewGroup

2. Layout

3. View

4. Widget



Question : What is the name of the class used by Intent to store additional information?

 : What is the name of the class used by Intent to store additional information?
1. Extra

2. Parcelable

3. Bundle

4. DataStore


Question : Which is not included in the Android application framework?

 : Which is not included in the Android application framework?
1. WindowManager

2. NotificationManager

3. DialerManager

4. PackageManager


Question : What Eclipse plugin is required to develop Android application?

 : What Eclipse plugin is required to develop Android application?
1. J2EE

2. Android Software Development Kit

3. Android Development Tools

4. Web Development Tools


Question : Can create a custom view by extending class Activity.

 : Can create a custom view by extending class Activity.
1. True
2. False


Question : Which of these files contains text values that you can use in your application?

 : Which of these files contains text values that you can use in your application?
1. AndroidManifest.xml

2. res/Text.xml

3. res/layout/Main.xml

4. res/values/strings.xml