WITH 100% CORRECT ANSWERS
What company built the first Nexus device?
a. HTC
b. Google
c. Motorola
d. Foxconn - Answer-a
What movie inspired the design of Honeycomb?
a. Star Trek
b. Tron
c. The Matrix
d. Minority Report - Answer-b
Where did Andy Rubin work before founding Android Inc?
a. Apple
b. Microsoft
c. Danger Inc.
d. All Of Above - Answer-a
What was the first version to be updated with multitouch gestures like pinch zoom?
a. 4.0
b. 2.1
c. 2.3
d. 2.0 - Answer-b
What is the name of Google's efforts to make Android run at 60FPS?
a. Project Butter
b. Project Roadrunner
c. Project Speedy
d. Project Swift - Answer-a
Who made the first Nexus tablet?
a. HTC
b. ASUS
,c. Google
d. Samsung - Answer-b
What year was the first Google I/O held?
a. 1998
b. 2008
c. 2005
d. 2003 - Answer-b
What method is used to send a broadcast event?
Select one:
a. sendBroadcast(intent);
b. startBroadcast(intent);
c. registerBroadcast(intent);
d. sendBroadcastReceiver(intent); - Answer-a
What class do you have to inherit from to be a broadcast receiver?
Select one:
a. Broadcast
b. BroadcastReceiver
c. AbstractBroadcast
d. Broadcaster - Answer-b
What are the inputs to the onReceive() method of a broadcast receiver?
Select one:
a. Context, Intent
b. Activity, Intent
c. Context, Bundle
d. Context, Activity - Answer-a
What is broadcast receiver?
Select one:
a. Intercept the events from a user's interaction with your application
b. The interactive components in your app's user interface
c. Represents a behavior or a portion of user interface in an activity
d. A component that does nothing but receive and react to broadcast announcements -
Answer-d
Represents a behavior or a portion of user interface in an activity
Select one:
a. Fragment
,b. Activity
c. Layout
d. View - Answer-a
A component that does nothing but receive and react to broadcast announcements
Select one:
a. Broadcast
b. BroadcastReceiver
c. AbstractBroadcast
d. Broadcaster - Answer-b
Intercept the events from a user's interaction with your application is ____
a. Input Events
b. Input controls
c. Broadcast
d. BroadcastReceiver - Answer-a
__________ are the interactive components in your app's user interface
a. Input Events
b. Input controls
c. Broadcast
d. BroadcastReceiver - Answer-b
What is a Fragment?
Select one:
a. A fragment is a part or portion of an activity
b. All of these
c. A fragment is modular in a sense that you can move around or combine with other
fragments in a single activity
d. Fragments are also reusable - Answer-b
If the user leaves a task for long time
Select one:
a. System clears an activity and retain state of all other activities
b. System is independent of activities
c. System will retain the tasks state until closed explicitly
d. System will clear task of activities except root activity - Answer-d
What is not a service?
Select one:
a. Intercept the events from a user's interaction with your application
b. Like an activity, it has lifecycle methods that you can implement to monitor changes
in its state.
, c. It is a program that can run in the background for an indefinite period
d. Service is another building block of android application it does not provide a UI -
Answer-a
How do you declare 4 components (Activity, Service, BroadcastReceiver,
ContentProvider) of android in mainfestfile?
Select one:
a. <activity>, <service>, <receiver>, <content>
b. <activity>, <service>, <broadcastreceiver>, <contentprovider>
c. <activity>, <service>, <broadcast>, <provider>
d. <activity>, <service>, <receiver>, <provider> - Answer-d
In Android, the___ method of ___ class to return the full path to external storage.
Select one:
a. getExternalStorage(), Context
b. getExternalStorageDirectory(), File
c. getExternalStorageDirectory(), Environment
d. getExternalStorage(), System - Answer-c
what is Activtiy?
a. Activity is the basic building block of every visible android application .
b. Its provides the means to render a UI .
c. Every screen in an application is an activity by itself .
d. Though they work together to present an application sequence , each activity is an
independent entity .
e. All of these - Answer-e
what is fundamental building blocks / components of Android ?
a. Activities
b. Services
c. Broadcast Receivers
d. Content Providers.
e. all - Answer-e
Which one is not belong to service?
a. Service is another building block of android application it does not provide a UI.
b. Service is a program that can run in the background for an indefinite period
c. Service is a another type of component that can receive and respond to any
broadcast announcement.. - Answer-c