0% found this document useful (0 votes)
126 views

Android Interview Questions

FAQ on interviews Android

Uploaded by

wtabares
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
126 views

Android Interview Questions

FAQ on interviews Android

Uploaded by

wtabares
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Android Interview Questions - javatpoint

http://www.javatpoint.com/android-interview-ques...

Android Interview Questions


Android programming is growing day by day. The questions asked by interviewers in
android is given below. A list of top android interview questions and answers are given
below.

1) What is Android?
Android is an open-source, linux-based operating system that is used in mobiles,
tablets, televisions etc.

2) Who is the founder of Android?


Andy Rubin.

3) What are the code names of android?


1. Aestro
2. Blender
3. Cupcake
4. Donut
5. Eclair
6. Froyo
7. Gingerbread
8. Honycomb
9. Ice Cream Sandwitch
10. Jelly Bean
11. Kitkat
12. Lollipop
13. Marshmallow
More details...

4) What are the advantages of android?


Open-source: It means no licence, distribution and development fee.
Platform-independent: It supports windows, mac and linux platforms.
Supports various technologies: It supports camera, bluetooth, wifi, speech, EDGE
etc. technologies.
Highly optimized Virtual Machine: Android uses highly optimized virtual machine for
mobile devices, called DVM (Dalvik Virtual Machine).

2 of 6

01/26/2016 03:22 AM

Android Interview Questions - javatpoint

http://www.javatpoint.com/android-interview-ques...

5) Does android support other language than java?


Yes, 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.

6) What are the core building blocks of android?


The core building blocks of android are:
Activity
View
Intent
Service
Content Provider
Fragment etc.
More details...

7) What is activity?
Activity is like a frame or window in java that represents GUI. It represents one screen
of android.

8) What are the life cycle methods of android activity?


There are 7 life-cycle methods of activity. They are as follows:
1. onCreate()
2. onStart()
3. onResume()
4. onPause()
5. onStop()
6. onRestart()
7. onDestroy()
More details...

9) What is intent?
It is a kind of message or information that is passed to the components. It is used to
launch an activity, display a web page, send sms, send email etc. There are two types
of intents in android:
1. Implicit Intent
2. Explicit Intent

3 of 6

01/26/2016 03:22 AM

Android Interview Questions - javatpoint

http://www.javatpoint.com/android-interview-ques...

10) What is implicit intent in android?


Implicit intent is used to invoke the system components.

11) What is explicit intent in android?


Explicit intent is used to invoke the activity class.

12) How to call another activity in android?


Intent i = new Intent(getApplicationContext(), ActivityTwo.class);
startActivity(i);

13) What is service in android?


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

14) What is the name of database used in android?


SQLite: An opensource and lightweight relational database for mobile devices.
More details...

15) What is AAPT?


AAPT is an acronym for android asset packaging tool. It handles the packaging
process.

16) What is content provider?


Content providers are used to share information between android applications.

17) What is fragment?


Fragment is a part of Activity. By the help of fragments, we can display multiple screens
on one activity.

4 of 6

01/26/2016 03:22 AM

Android Interview Questions - javatpoint

http://www.javatpoint.com/android-interview-ques...

18) What is ADB?


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

19) What is NDK?


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

20) What is ANR?


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

21) What is DDMS?


DDMS stands for Dalvik Debug Monitor Server. It gives the wide array of debugging
features:
1. Port forwarding services
2. Screen capture
3. Thread and heap information
4. Network traic tracking
5. Location data spoong

22) Define Android Architecture?


Android architecture consists of 4 components:
1. Linux Kernal
2. Libraries
3. Android Framework
4. Android Applications
More details...

23) What is a portable wi-fi hotspot?


The portable wi-fi hotspot is used to share internet connection to other wireless devices.

5 of 6

01/26/2016 03:22 AM

Android Interview Questions - javatpoint

http://www.javatpoint.com/android-interview-ques...

24) Name the dialog box which are supported by


android?
Alert Dialog
Progress Dialog
Date Picker Dialog
Time picker Dialog

25) Name some exceptions in android?


Inate Exception
Surface.OutOfResourceException
SurfaceHolder.BadSurfaceTypeException
WindowManager.BadTokenException

26) What are the basic tools used to develop an


android app?
JDK
Eclipse+ADT plugin
SDK Tools
Java Basics Interview

Java OOPs Interview Questions

Questions
Java Multithreading Interview
Questions
Java Collection Interview

Java String & Exception Interview


Questions
JDBC Interview Questions

Questions
Servlet Interview Questions

JSP Interview Questions

Spring Interview Questions

Hibernate Interview Questions

PL/SQL Interview Questions

SQL Interview Questions

Oracle Interview Questions

Android Interview Questions

SQL Server Interview

MySQL Interview Questions

Questions

6 of 6

01/26/2016 03:22 AM

You might also like