Skip to content
Snippets Groups Projects
Forked from ii / INF101 / 23V / students / lab3
16 commits behind the upstream repository.
TextAnswers.java 538 B
package no.uib.inf101.terminal;

public class TextAnswers {

  /*
   * Consider the following code:
   *
   * CommandLineInterface cli = new DummyShell();
   */
  /** What is the type of the variable cli? */
  static final String q1 = "";

  /** In which class is the object cli refers to? */
  static final String q2 = "";

  /** True or false: CommandLineInterface is both a type and an interface. */
  static final Boolean q3 = null;

  /** True or false: DummyShell is both a class and a type. */
  static final Boolean q4 = null;

}