wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Android App Development

Total questions: 12

Worksheet time: 6mins

Name
Class
Date
1.

What is Manifest.xml in android?

a)

It has information about layout in an application

b)

It has the information about activities in an application

c)

It has all the information about an application

d)

None of these

2.

What is Log message in android?

a)

Log message is used to debug a program

b)

Same as printf()

c)

Same as Toast()

d)

None of the above

3.

What Android resource directory do we store our design files?

a)

Layout

b)

Drawable

c)

Java

d)

Values

4.

What attribute will use to increase the size of the text?

a)

app:textSize

b)

android:textSize

c)

tools:textSize

d)

None of the above

5.

Android is

a)

Web server

b)

Operating system

c)

Web browser

d)

None of these

6.

Android Operating System is based on

a)

Mac

b)

Windows

c)

Linux

d)

Solaris

7.

During an Activity lifecycle, what is the first callback method invoked in the system?

a)

onStop()

b)

onStart()

c)

onCreate()

d)

onResume()

8.

What Activity method you use to retrieve a reference to an Android view by using the id attribute of a resource XML?

a)

findViewByReference(int id);

b)

findViewById(int id)

c)

retrieveResourceById(int id)

d)

findViewById(String id)

9.

AVD Stands for

a)

Android vector Device

b)

Android Virtual Device

c)

Android Virtual Directory

d)

None of these

10.

How many intents are there in Android?

a)

3

b)

2

c)

1

d)

4

11.

Which intent we must use if we want to move from one activity to another activity?

a)

Implicit Intent

b)

Explicit Intent

c)

Both

d)

None of the above

12.

Which view we need to use if we want take input from user?

a)

TextView

b)

EditText

c)

InputText

d)

Button