Description: platforms and products Online Quiz - 25 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: platforms and products |
If you don't need to share data amongst multiple applications, then you can use a database directly using -
Requests to ContentResolver are automatically forwarded to the appropriate Content Provider instance
To query content provider, both methods ________ and ______ return a Cursor object and takes the same set of arguments.
Content providers that are not declared in the manifest file are also visible to the Android system
Select the static Helper method(s) to append an ID to a ContentProvider URI
Identify “Authority” part of below Content URI - content://contacts/people/3
_______ is the Android way of doing IPC that is interface based and lightweight
You may declare ContentProvider with a element in the application's AndroidManifest.xml file
Select Native Android Content Provider(s) from the list below.
In SQLite database, there is a strict type checking when assigning or extracting values from each column within a row.
________ objects are used to insert new rows into database tables
What is the use of –e option in following adb command – adb –e shell
In SQLite3 database, Files (such as bitmaps or audio files) are usually stored within database tables.
The SQLite3 has been implemented as a ______________ that's included as part of the Android software stack
During start-up, Android looks for activities whose category (also known as a tag) is marked as CATEGORY_LAUNCHER. It then picks up these activity names and icons and places them on the home screen to launch.
In addition to its primary attributes of action and data URI, intent can include additional attributes called extras. An extra can provide more information to the component that receives the intent. It is accessed using -
Pending Intent is commonly used to package an Intent that will be fired in response to a future event, such as a widget View being clicked or a Notification being selected from the notification panel.
Linkify is a helper class that automatically creates hyperlinks within Text View (and Text View-derived) classes
Intent is an action with its associated data URI. You can use intents to invoke internal or external components from your application.
Android resources stored in_______ of Android Application directory structure, are not compiled into binary format.