mobprog Flashcards
The first release of Android with a dessert codename is ___________.
Android 1.2
Android 1.8
Android 1.5
Android 1.0
Android 1.5
Google purchased Android in what year?
2012
1999
2005
2001
2005
Each log entry in the LogCat Window has a priority of FATAL, ERROR, WARNING, INFO, DEBUG, or VERBOSE.
True
False
TRUE
The Android Emulator simulates Android devices on your computer so that you can test your application on a variety of devices and Android API levels without needing to have each physical device.
True
False
TRUE
Manifest is a file that stores the configuration of your application.
True
False
TRUE
Consider the given resources below:
<resources> <color name = “blue”>#2196f3</color> <string name = “myapp”>MyApp</string> </resources> How will you access the color resource in your Java file?
R.id.blue
@+id/blue
@color/blue
R.color.blue
R.color.blue
In Android architecture, Activity Manager falls under ________________.
Android Runtime
Applications
Application Framework
Linux Kernel
Application Framework
If you want to access an image from your res folder to your Java code, what command you should use?
res/drawable/image
R.res.image
R.id.image
R.drawable.image
R.drawable.image
_______________ are additional files and static content that your code uses, such as bitmaps, layout definitions, etc.
Activities
Resources
Receivers
Services
Resources
One of the major update on Android Pie is ______________.
Fingerprint Authentication
Adaptive Brightness
PIP Mode
Material Design
Adaptive Brightness
To enable USB Debugging mode on our Android device, we need to choose what menu?
Google Account Settings
Connection/Connectivity Settings
Privacy Settings
Developer Options
Developer Options
This application component dictates the UI and handle the user interaction to the smart
phone screen.
Content Providers
Activities
Broadcast Receivers
Services
Activities
The top layer of the android architecture is _______________. The native and third-party
applications like contacts, email, music, gallery, clock, games, etc. whatever we will build
those will be installed on this layer only.
Platform Libraries
Applications
Android Runtime
Application Framework
Applications
Android 4.4 is also know as _______________.
Pie
Nougat
Marshmallow
Kitkat
Kitkat
The Dalvik VM enables every Android application to run in its own process, with its own
instance of the Dalvik virtual
machine.
True
False
True