Official Bank 0/128

Google Developers Certification – Associate Android Developer (Kotlin and Java Exam) (Associate-Android-Developer) - Google Cloud Exam Questions

Last updated on June 20, 2026

97% Exam Compliance
128 Total Questions
1
Question
What is the incorrect statement about Data Access Object (androidx.room.Dao)?
Options
A Data Access Objects are the main classes where you define your database interactions. They can include a variety of query methods.
B An abstract @Dao class can optionally have a constructor that takes a Database as its only parameter.
C The class marked with @Dao should either be an interface or an abstract class. At compile time,
Room will generate an implementation of this class when it is referenced by a Database.
D It is recommended to have only one Dao class in your codebase for all tables.
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

2
Question
In application theme style, flag windowDrawsSystemBarBackgrounds ( name="android:windowDrawsSystemBarBackgrounds">) indicates:
Options
A whether there should be no title on this window.
B whether this is a floating window.
C whether this Window is responsible for drawing the background for the system bars.
D whether this window should have an Action Bar in place of the usual title bar.
E that this window should not be displayed at all.
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

3
Question
Select 3 major components of the Room. (Choose three.)
Select 3
Options
A @Database
B @Entity
C @RawQuery
D @Query
E @WorkerThread
F @DAO
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

4
Question
For example, we have a file in our raw folder app/src/main/res/raw/sample_teas.json. To get an

InputStream for reading it, from out Context context, we can do this:
Options
A val input = context!!.getRawResource(R.raw.sample_teas)
B val input = context!!.resources.openRawResource(R.raw.sample_teas)
C val input = context!!.openRawResource(R.raw.sample_teas)
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

5
Question
DRAG DROP Move the major components of the Android platform to correct places in diagram.
Reveal Only
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

Finish Practice?

Are you sure you want to finish? This will end your practice session.