Multiple choice

What is the purpose of Handler class in android?

  1. This allows us to send message to be processed immediately only.

  2. This allows us to send messages can be processed at some time in the future only.

  3. This allows us to send messages which can be processed immediately or scheduled for processing at some time in the future.

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

A handler class allows you to send messages which are to be processed by the handler at some other time or immediately.