Currently you cannot use a Scanner class (from the java.util library) for example to ask for an Input (whatever the input type will be: String, int, double....) because the Terminal will show an error ...
public static void main(String[] args) { Scanner ch = new Scanner(System.in); System.out.println("What is TRUE about java programming language"); String Answer = ch ...