PersonDemo1.java
package people;

public class PersonDemo1 {

    public static void main(String[] args) {
        Person bd = new Person("Jessica Dylan",5,24,1941);
        System.out.println(bd + " " + bd.initials() + " " + bd.isBoomer());

        Person nr = new Person("Randy Rapace",12,28,1974);
        System.out.println(nr +" " + nr.initials() + " " + nr.isBoomer());

        Person pw = new Person("Thomson Williams",4,5,1973);
        System.out.println(pw + " " + pw.initials() + " " + pw.isBoomer());

        Person fs = new Person("Mickel Ava",12,12,1915);
        System.out.println(fs + " " + fs.initials() + " " + fs.isBoomer());

        Person dk = new Person("James Mia",11,16,1964);
        System.out.println(dk + " " + dk.initials() + " " + dk.isBoomer());

        Person ss = new Person("Vishal Ahir",5,17,1999);
        System.out.println(ss + " " + ss.initials() + " " + ss.isBoomer());

    }

}