Which of the following statements displays a message on the user interface that says, "Hello"?
a. Toast.makeText("Hello", Toast.LENGTH_SHORT);
b. Toast.makeText("Hello", Toast.LENGTH_SHORT).show();
c. Toast.makeText(this, "Hello", Toast.LENGTH_SHORT);
d. Toast.makeText(this, "Hello", Toast.LENGTH_SHORT).show();
Answer: D