PPT Slide
// An instance of VIP contains a VIP's data
public class VIP extends Employee
{private double bonus; // The VIP's bonus
// Constructor: a person with name n, year d hired,
// yearly pay s, and bonus b
public VIP(String n, int d, double s, double b)
// Yield a String containing the data for the person
{return “VIP + " name + " " + pay + " " +
" " + bonus + " " + hireDate;
public void changeBonus(double p)