What is NotificationManager class?

What is NotificationManager class?



Answer: The NotificationManager class is used to display notifications on the device's status bar

What is an Activity?

What is an Activity?



Answer: A single screen in an application, with supporting Java code

What is an intent object?

What is an intent object?



Answer: An Intent object is a bundle of information

Assume you have the following constant value, a NotificationManager object named manager, and a Notification object named notification. Which of the following statements removes the notification? final int NOTIFICATION_ID = 999;

Assume you have the following constant value, a NotificationManager object named manager, and a Notification object named notification. Which of the following statements removes the notification?
final int NOTIFICATION_ID = 999;




Answer: manager.cancel(NOTIFICATION_ID);

Assume you have the following constant value, a NotificationManager object named manager, and a Notification object named notification. Which of the following statements displays the notification? final int NOTIFICATION_ID = 999;

Assume you have the following constant value, a NotificationManager object named manager, and a Notification object named notification. Which of the following statements displays the notification?
final int NOTIFICATION_ID = 999;



Answer: manager.notify(NOTIFICATION_ID, notification);

What is meant by responsive design?

What is meant by responsive design?



Answer: Its a layout that adjust automatically depending on screen size.