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);


Learn More :