Forked from
ii / INF101 / 23V / students / lab3
8 commits behind the upstream repository.
-
Torstein Strømme authoredTorstein Strømme authored
TextAnswers.java 999 B
package no.uib.inf101.terminal;
// UiB INF101 ShellLab - TextAnswers.java
//
// I denne filen skal du besvare spørsmålene under. Du kan sjekke
// svarene dine ved å kjøre testen TextAnswersTest.java.
public class TextAnswers {
/**
* Consider the following code:
* CommandLineInterface cli = new DummyShell();
*
* What is the type of the variable cli?
*/
static final String q1 = "";
/**
* Consider the following code:
* CommandLineInterface cli = new DummyShell();
*
* In which class is the object cli refers to?
*/
static final String q2 = "";
/**
* Consider the following code:
* CommandLineInterface cli = new DummyShell();
*
* true or false: CommandLineInterface is both a type and an interface.
*/
static final Boolean q3 = null;
/**
* Consider the following code:
* CommandLineInterface cli = new DummyShell();
*
* true or false: DummyShell is both a class and a type.
*/
static final Boolean q4 = null;
}