Associate-Android-Developer試験無料問題集「Google Developers Certification - Associate Android Developer (Kotlin and Java Exam) 認定」

What happens when you create a DAO method and annotate it with @Insert?
Example:
@Dao
public interface MyDao {
@Insert(onConflict = OnConflictStrategy.REPLACE)
public void insertUsers(User... users);
}

The following code snippet shows an example of an Espresso test:

When scheduling unique work, you must tell WorkManager what action to take when there is a conflict. You do this by passing an enum when enquing the work. For one-time work, you provide an ExistingWorkPolicy, which supports some options for handling the conflict. (Choose four.)

正解:A,D,F,G 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
Select correct demonstration of WorkRequest cancellation.

解説: (GoShiken メンバーにのみ表示されます)
Building your app from the command line, if you have a "demo" product flavor, then you can build the debug version with the command:

解説: (GoShiken メンバーにのみ表示されます)
The Testing Pyramid, shown in the Figure, illustrates how your app should include the three categories of tests: small, medium, and large. Medium tests are integration tests that:

To create a basic JUnit 4 test class, create a class that contains one or more test methods. A test method begins with the specific annotation and contains the code to exercise and verify a single functionality in the component that you want to test. What is the annotation?

If no any folder like res/anim-<qualifiers>, res/drawable-<qualifiers>, res/layout-<qualifiers>, res/raw-
<qualifiers>, res/xml-<qualifiers> exist in the project. Which folders are required in the project anyway? (Choose two.)

解説: (GoShiken メンバーにのみ表示されます)