I am following the ebook Big Java Late Objects - and I have problem resolving on of the tasks. It is about inheritance. There is Question class and one sub ChoiceQuestion class that extends it.
But when I run the code in my testclass it calls the null exception and I don't know why.
Exception in thread "main" java.lang.NullPointerException
at ChoiceQuestion.addChoice(ChoiceQuestion.java:12)
at TestClass.main(TestClass.java:21)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at                  sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
Here are my classes:
public class Question {
private String text;
private String answer;
/**
 *  Constructs a queston with empty question and answer.
 */
public Question(){
    text = "";
    answer = "";
}
//=============Setter methods============
public void setText(String questionText){
    text = questionText;
}
public void setAnswer(String correctResponse){
    answer = correctResponse;
}
//==============Getter Methods=============
public boolean checkAnswer(String response){
    return answer.equals(response);
}
public void display(){
    System.out.println(text);
}
}
And here is my subclass:
class ChoiceQuestion extends Question {
private ArrayList<String> choices;
//=========Methods==============
public void addChoice(String choice,boolean correct){
    choices.add(choice);
    if(correct){
        //convert choices.size() to string
        String choiceString = "" + choices.size();
       this.setAnswer(choiceString);
    }
}
public void display(){
    // Display the question text
    super.display();
    // Display the answer choices
    for(int i=0;i<choices.size();i++){
        int choiceNumber = i + 1;
        System.out.println(choiceNumber + ": " + choices.get(i));
    }
}
}
And my test Class:
import java.util.Scanner;
public class TestClass {
public static void presentQuestion(Question q){
    q.display();
    System.out.println("Your answer: ");
    Scanner in = new Scanner(System.in);
    String response = in.nextLine();
    System.out.println(q.checkAnswer(response));
}
public static void main(String[] args) {
    Question first = new Question();
    first.setText("James Gosling");
    first.setAnswer("James Gosling");
    ChoiceQuestion second = new ChoiceQuestion();
    second.setText("In which country was the inventor of Java born? ");
    second.addChoice("Austria", false);
    second.addChoice("Canada",true);
    second.addChoice("Denmark",false);
    second.addChoice("United States",false); 
    presentQuestion(first);
    presentQuestion(second);
}
}
 
     
     
     
     
    