
/**
 * This is an oversimplified representation of a student
 * A student has a name, phone number, Achieve Credits, Merit Credits and Excellence Credits
 *
 * @author (your name)
 * @version (a version number or a date)
 */
public class Student
{
    // instance variables - replace the example below with your own
    public String name;
    public String phoneNumber;
    public int achieve;
    public int merit;
    public int excellence;

    /**
     * To Create a student object, we just need their name.
     */
    public Student(String name){
        this.name = name;
    }
    
    
    /**
     * Returns whether the student has NCEA level 2
     */
    public boolean hasNCEA(){
        //YOUR CODE HERE
        return false;
    }
    
    /**
     * Returns whether the student has NCEA level 2
     * Should return none, Merit or Excellence
     */
    public String hasEndorsement(){
        //YOUR CODE HERE
        return "";
    }
    

}
