Schedule tasks with WorkManager

  1. Which of the following is true about WorkManager

  2. Which of the following would not require WorkManager?

  3. A Worker represents a task to be scheduled by WorkManager while a WorkRequest contains the actual code to be executed.

  4. Making execution dependent on device state such as storage space and battery life are examples of

  5. Fill-in-the-blanks

    Enter one or more words to complete the sentence.

    For a single task, you'd create a OneTimeWorkRequest, whereas for a task that needs to repeat after a given interval, you'd create a ___.

  6. In a chain, the output of the last WorkRequest becomes the input for the next WorkRequest.

  7. Fill-in-the-blanks

    Enter one or more words to complete the sentence.

    The ___() method is implemented by subclasses of the Worker class and defines the code to be executed by a WorkRequest.

  8. Which of the following are true about unique work chains?

    Choose as many answers as you see fit.