Android Multiple Choice Questions


Android Multiple Choice Questions

1) Android is -
an operating system
a web browser
a web server
None of the above 



Answer: (a) an operating system

Explanation: Android is a software package and linux based operating system for mobile devices such as tablet computers and smartphones.

2) Under which of the following Android is licensed?
OSS
Sourceforge
Apache/MIT
None of the above 



Answer: (c) Apache/MIT

Explanation: The Android platform was released under the Apache 2.0 license, and it is responsible for the copyright of the Android Open Source project. The Apache Foundation permits and grants licenses for software uses and distribution by the copyright under the Android Open Source Project.

3) For which of the following Android is mainly developed?
Servers
Desktops
Laptops
Mobile devices 



Answer: (d) Mobile devices

Explanation: Android is a software package and a Linux-based operating system specially designed for touch-screen mobile devices like smartphones and tablets.

4) Which of the following is the first mobile phone released that ran the Android OS?
HTC Hero
Google gPhone
T - Mobile G1
None of the above 



Answer: (c) T - Mobile G1

Explanation: The first Android mobile was publicly released with Android 1.0 of the T-Mobile G1 (aka HTC Dream) in October 2008.

5) Which of the following virtual machine is used by the Android operating system?
JVM
Dalvik virtual machine
Simple virtual machine
None of the above 



Answer: (b) Dalvik virtual machine

Explanation: The Dalvik Virtual Machine (DVM) is an android virtual machine optimized for mobile devices. It optimizes the virtual machine for memory, battery life, and performance. Dalvik is a name of a town in Iceland. The Dalvik VM was written by Dan Bornstein.

6) Android is based on which of the following language?
Java
C++
C
None of the above 



Answer: (a) Java

Explanation: Java language is mainly used to write the android code even though other languages can be used.

7) APK stands for -
Android Phone Kit
Android Page Kit
Android Package Kit
None of the above 



Answer: (c) Android Package Kit

Explanation: An APK is a short form of the Android Package Kit. An APK file is the file format used to install the applications on the android operating system.

8) What does API stand for?
Application Programming Interface
Android Programming Interface
Android Page Interface
Application Page Interface 



Answer: (a) Application Programming Interface

Explanation: API stands for application program interface. It is a set of routines, protocols, and tools for building software and applications. It may be any type of system like a web-based system, operating system, or database system.

9) Which of the following converts Java byte code into Dalvik byte code?
Dalvik converter
Dex compiler
Mobile interpretive compiler (MIC)
None of the above 



Answer: (b) Dex compiler

Explanation: The Dex compiler converts the class files into a .dex file that runs on the Dalvik VM. Multiple class files are converted into one dex file.

10) How can we stop the services in android?
By using the stopSelf() and stopService() method
By using the finish() method
By using system.exit() method
None of the above 



Answer: (a) By using the stopSelf() and stopService() method

Explanation: A service is started when a component (like activity) calls the startService() method; now, it runs in the background indefinitely. It is stopped by the stopService() method. The service can stop itself by calling the stopSelf() method.

11) What is an activity in android?
android class
android package
A single screen in an application with supporting java code
None of the above 



Answer: (c) A single screen in an application with supporting java code

Explanation: An activity is a single screen in android. It is like a window or frame of Java. By the help of activity, you can place all your UI components or widgets in a single screen. Activity is like a frame or window in java that represents GUI. It represents one screen of android.

12) How can we kill an activity in android?
Using finish() method
Using finishActivity(int requestCode)
Both (a) and (b)
Neither (a) nor (b) 



Answer: (c) Both (a) and (b)

Explanation: The finish() method is used to close the activity. Whereas the finishActivity(int requestCode) also closes the activity with requestCode.

13) ADB stands for -
Android debug bridge
Android delete bridge
Android destroy bridge
None of the above 



Answer: (a) Android debug bridge

Explanation: ADB stands for Android Debug Bridge. It is a command-line tool that is used to communicate with the emulator instance.

14) On which of the following, developers can test the application, during developing the android applications?
Third-party emulators
Emulator included in Android SDK
Physical android phone
All of the above 



Answer: (d) All of the above

Explanation: We can use the Android emulator, physical android phone, or third-party emulator as a target device to execute and test our Android application.

15) Which of the following kernel is used in Android?
MAC
Windows
Linux
Redhat 



Answer: (c) Linux

Explanation: Android is a customized Linux 3.6 kernel. It is the heart of android architecture that exists at the root of android architecture. Linux kernel is responsible for device drivers, power management, memory management, device management, and resource access.

16) Which of the following is the first callback method that is invoked by the system during an activity life-cycle?
onClick() method
onCreate() method
onStart() method
onRestart() method 



Answer: (b) onCreate() method

Explanation: onCreate() method is called when activity is first created. The onCreate() and onDestroy() methods are called only once throughout the activity lifecycle.

17) Which of the following is not an activity lifecycle callback method?
onClick() method
onCreate() method
onStart() method
onBackPressed() method 



Answer: (d) onBackPressed() method

Explanation: None

18) We require an AVD to create an emulator. What does AVD stand for?
Android Virtual device
Android Virtual display
Active Virtual display
Active Virtual device 



Answer: (a) Android Virtual device

Explanation: An Android Virtual Device (AVD) is an emulator configuration that represents a specific Android device. We can use the Android emulator as a target device to execute and test our Android application on our PC.

19) Does android support other languages than java?
Yes
No
May be
Can't say 



Answer: (a) Yes

Explanation: Yes, an android app can be developed in C/C++ also using android NDK (Native Development Kit). It makes the performance faster. It should be used with Android SDK.

20) What is the use of content provider in Android?
For storing the data in the database
For sharing the data between applications
For sending the data from an application to another application
None of the above 



Answer: (c) For sending the data from an application to another application

Explanation: A content provider is used to share information between Android applications.

21) AAPT stands for -
Android Activity Packaging Tool
Android Asset Packaging Tool
Android Action Packaging Tool
None of the above 



Answer: (b) Android Asset Packaging Tool

Explanation: AAPT is an acronym for "Android Asset Packaging Tool". It handles the packaging process.

22) NDK stands for -
Native Development Kit
New Development kit
Native Design Kit
None of the above 



Answer: (a) Native Development Kit

Explanation: NDK stands for Native Development Kit. By using NDK, you can develop a part of an app using a native language such as C/C++ to boost performance.

23) Which of the following is contained in the src folder?
XML
Java source code
Manifest
None of the above 



Answer: (b) Java source code

Explanation: None

24) Which of the following method is used to handle what happens after clicking a button?
onClick
onCreate
onSelect
None of the above 



Answer: (a) onClick

Explanation: None

25) Which of the following android component displays the part of an activity on screen?
View
Manifest
Intent
Fragment 



Answer: (d) Fragment

Explanation: Android Fragment is the part of activity; it is also known as sub-activity. There can be more than one fragment in an activity. Fragments represent multiple screens inside one activity.

26) Which of the following is the parent class of Activity?
context
object
contextThemeWrapper
None of the above 



Answer: (c) contextThemeWrapper

Explanation: The android Activity is the subclass of ContextThemeWrapper class. Android Activity Lifecycle is controlled by 7 methods of android.app.Activity class. An activity is a single screen in android. It is like a window or frame of Java.

27) Which of the following is the parent class of service?
context
object
contextThemeWrapper
contextWrapper 



Answer: (d) contextWrapper

Explanation: The android.app.Service is subclass of ContextWrapper class. Android service is a component used to perform operations on the background, such as playing music, handling network transactions, interacting content providers, etc.

28) OHA in android stands for -
Open Health Academy
Open Handset Alliance
Open Handset Application
Open Handset Association 



Answer: (b) Open Handset Alliance

Explanation: OHA stands for "Open Handset Alliance". It's a consortium of 84 companies such as google, samsung, AKM, synaptics, KDDI, Garmin, Teleca, eBay, Intel, etc.

29) In which of the following tab an error is shown?
CPU
Memory
ADB Logs
Logcat 



Answer: (d) Logcat

Explanation: Logcat is a command-line tool that dumps a log of system messages. It includes the messages that you have written from your app with the Log class and also includes the stack traces when the devices throw an error. Logcat helps to analyze the problems and also helps to display the log messages of our android device.

30) In which year OHA (Open Handset Alliance) is announced?
2005
2007
2006
None of the above 



Answer: (b) 2007

Explanation: OHA (Open Handset Alliance) was established on 5th November 2007, led by Google. It is committed to advance open standards, provide services and deploy handsets using the Android Platform.

31) Which of the following is the name of the Android version 1.5?
Eclair
Froyo
Cupcake
Donut 



Answer: (c) Cupcake

Explanation: On April 27, 2009, the Android updated to 1.5 with the codename of the dessert item (Cupcake). It has a Linux kernel 2.6.27.

32) Which of the following is the name of the Android version 1.6?
Eclair
Froyo
Cupcake
Donut 



Answer: (d) Donut

Explanation: On September 15, 2009, Android 1.6 was released with the name Donut. It contains numerous new features such as voice and text entry search, bookmark history, contacts, web, "speak" a string of text, faster camera access, user can select multiple photos for deletion, support text-to-speech engine, WVGA screen resolutions.

33) Which of the following is the topmost layer of android architecture?
System Libraries and Android Runtime
Linux Kernel
Applications
Applications Framework 



Answer: (c) Applications

Explanation: On the top of the application framework, there are applications. All applications such as home, contact, settings, games, browsers are using an android framework that uses android runtime and libraries.

34) Which of the layer is below the topmost layer of android architecture?
System Libraries and Android Runtime
Linux Kernel
Applications
Applications Framework 



Answer: (d) Applications Framework

Explanation: On the top of Native libraries and android runtime, there is an application framework. Android framework includes Android API's such as UI (User Interface), telephony, resources, locations, Content Providers (data), and package managers. It provides a lot of classes and interfaces for android application development.

35) Which of the layer is the lowest layer of android architecture?
System Libraries and Android Runtime
Linux Kernel
Applications
Applications Framework 



Answer: (b) Linux Kernel

Explanation: It is the heart of android architecture that exists at the root of android architecture. Linux kernel is responsible for device drivers, power management, memory management, device management, and resource access.

36) What is contained in manifest.xml?
Source code
List of strings used in the app
Permission that the application requires
None of the above 



Answer: (c) Permission that the application requires

Explanation: The AndroidManifest.xml file contains information of your package, including components of the application such as activities, services, broadcast receivers, content providers, etc. It is responsible for protecting the application to access any protected parts by providing the permissions.

37) Which of the following is not a state in the service lifecycle?
Destroyed
Start
Paused
Running 



Answer: (c) Paused

Explanation: A service is a component that runs in the background. It is used to play music, handle network transaction, etc.

38) As an android programmer, which version of Android should we use as a minimum development target?
Version 1.2 or version 1.3
Version 1.0 or version 1.1
Version 1.6 or version 2.0
Version 2.3 or version 3.0 



Answer: (c) Version 1.6 or version 2.0

Explanation: None

39) Which of the following is not a nickname of any android version?
Donut
Muffin
Honeycomb
Cupcake 



Answer: (b) Muffin

Explanation: Muffin is not a nickname of any android version.

40) Which of the following is a dialog class in android?
AlertDialog
DatePicker Dialog
ProgressDialog
All of the above 



Answer: (d) All of the above

Explanation: The Dialog classes that are supported in android are -
Alert Dialog
Progress Dialog
Date Picker Dialog
Time picker Dialog

41) In which state the activity is, if it is not in focus, but still visible on the screen?
Stopped state
Destroyed state
Paused state
Running state 



Answer: (c) Paused state

Explanation: When an activity is not in focus that is not interacting with the user but still visible on the screen, then the activity is in paused state.

42) Which of the following is the built-in database of Android?
SQLite
MySQL
Oracle
None of the above 



Answer: (a) SQLite

Explanation: SQLite is an open-source relational database, i.e., used to perform database operations on android devices such as storing, manipulating, or retrieving persistent data from the database. It is embedded in android by default. So, there is no need to perform any database setup or administration task.

43) Which of the following android version is named Jelly Bean?
3.1
2.1
1.1
4.1 



Answer: (d) 4.1

Explanation: On June 27, 2012, Google announced Android 4.1(Jelly Bean) in the Google I/O conference. It is based on Linux kernel 3.0.31.

44) Which of the following features are updated in Android 4.1(Jelly Bean)?
User Interface
Lock screen improvement
New clock application
All of the above 



Answer: (d) All of the above

Explanation: Android 4.1(Jelly Bean) updates to following features: smoother user interface, enhance accessibility, expandable notification, fixed bug on Nexus 7, one-finger gestures to expand/collapse notifications, lock screen improvement, multiple user accounts (tablets only), new clock application, Bluetooth low energy support, volume for incoming call, 4K resolution support, native emoji support, bug fixes for the Nexus 7 LTE.

45) Which of the following is the API level of Android version 5.0?
21
20
11
41 



Answer: (a) 21

Explanation: Android "Lollipop" (Android 5) was the 5th major version of Google's Android operating system. It is the twelfth version of Android. Its API level is 21.

46) Is it true that "There can be only one running activity at a given time"?
True
False
May be
Can't say 



Answer: (a) True

Explanation: None

47) Which of the following android library provides access to the database?
android.content
android.database
android.api
None of the above 



Answer: (b) android.database

Explanation: None

48) In Android studio, which of the following callback is called when an activity starts interacting with the user?
onDestroy
onCreate
onResume
onStop 



Answer: (c) onResume

Explanation: onResume is called when an activity will start interacting with the user.

49) The sendStickybroadcast(intent) method in android is used to show that the intent is -
Optional
Prioritize
Sticky
None of the above 



Answer: (c) Sticky

Explanation: If we use the sendStickyBroadcast(Intent) method, the Intent is sticky. It means that the Intent that we are sending will stay around after the completion of the broadcast.

50) Which of the following class in android displays information for a short period of time and disappears after some time?
toast class
log class
maketest class
None of the above 



Answer: (a) toast class

Explanation: An android toast provides feedback to the users about the operation being performed by them. It displays the message regarding the status of operation initiated by the user.

51) Which of the following method in android is used to log debug messages?
Log.r()
Log.R()
Log.d()
Log.D() 



Answer: (c) Log.d()

Explanation: The Lod.d() method in android is used to log debug messages.

52) Which of the following method is used by services to clean up any services?
onStop() method
stopService() method
onDestroy() method
stopSelf() method 



Answer: (c) onDestroy() method

Explanation: The onDestroy() method can be used by services to clean up any resources like receivers, threads, registered listeners, etc.

53) ANR in android stands for -
Application Not Reacting
Application Not Responding
Application Not Rendering
None of the above 



Answer: (b) Application Not Responding

Explanation: ANR stands for Application Not Responding. It is a dialog box that appears if the application is no longer responding.

54) All layout classes are the subclasses of -
android.view.View
android.view.ViewGroup
android.widget
None of the above 



Answer: (b) android.view.ViewGroup

Explanation: In Android, all layout classes are the subclasses of android.view.ViewGroup.

55) Which of the following class in android executes the task asynchronously with your service?
SyncTask
AsyncTask
Both of the above
None of the above 



Answer: (b) AsyncTask

Explanation: As the name implies, AsyncTask class executes a task asynchronously. AsyncTask is an abstract class provided by Android, which helps us to use the UI thread properly. This class allows us to perform long/background operations and show its result on the UI thread without having to manipulate threads.

56) Which of the following layout in android arranges its children into rows and columns?
RelativeLayout
TableLayout
FrameLayout
None of the above 



Answer: (b) TableLayout

Explanation: TableLayout in android allows us to arrange the components into rows and columns. The containers in TableLayout do not display any borderline for their cells, columns, or rows.

57) Which of the following layout in android aligns all children either vertically or horizontally?
RelativeLayout
TableLayout
FrameLayout
LinearLayout 



Answer: (d) LinearLayout

Explanation: LinearLayout in android aligns all children either vertically or horizontally. The direction of the LinearLayout can be specified using the android orientation attribute.

58) What is the default value of the orientation attribute in LinearLayout?
Horizontal
Vertical
There is no default value of orientation attribute in LinearLayout
None of the above 



Answer: (a) Horizontal

Explanation: LinearLayout in android aligns all children either vertically or horizontally. The direction of the LinearLayout can be specified using the android orientation attribute. Its default value of the orientation attribute of LinearLayout is horizontal.

59) What is the nine-patch images tool in android?
It is an image extension tool.
It is used to change the bitmap images into nine sections
Both (a) and (b)
None of the above 



Answer: (b) It is used to change the bitmap images into nine sections

Explanation: The nine-patch images tool in android is used to change the bitmap images into nine sections with four corners, four edges, and an axis.

60) GCM in android stands for -
Google Cloud Messaging
Google Count Messaging
Google Center Messaging
None of the above 



Answer: (a) Google Cloud Messaging

Explanation: GCM stands for Google Cloud Messaging. It is provided by Google for sending push notifications to and from an Android application.

Comments

Popular posts from this blog

Mini-Max Algorithm in Artificial Intelligence

Alpha-Beta Pruning

Software Engineering Multiple Choice Questions