Question 6

When using an ImageView, ImageButton, CheckBox, or other View that conveys information graphically. What attribute to use to provide a content label for that View?
  • Question 7

    In Android 8.0, API level 26, some APIs regarding notification behaviors were moved from Notification to NotificationChannel. For example, what should we use instead of NotificationCompat.Builder.setPriority() for Android 8.0 and higher?
  • Question 8

    If you added to your build.gradle file a room.schemaLocation:
    android {
    defaultConfig {
    javaCompileOptions {
    annotationProcessorOptions {
    arguments = ["room.schemaLocation": "$projectDir/schemas".toString
    ()]
    }
    }
    }
    }
    Then, you build your app or module.
    As a result you got a json file, with such path to it: app/schemas/your_app_package/db_package/DbClass/DB_VERSION.json What are the correct statements about this file? (Choose all that apply.)
  • Question 9

    "workManager" is an instance of WorkManager. Select correct demonstration of WorkRequest cancellation:
  • Question 10

    About running a debuggable build variant. Usually, you can just select the default "debug" variant that's included in every Android Studio project (even though it's not visible in the build.gradle file). But if you define new build types that should be debuggable, you must add 'debuggable true' to the build type. Is that mostly true?