Skip to content
Snippets Groups Projects
Commit f2c0f0a7 authored by Malvika.Singh's avatar Malvika.Singh
Browse files

Update src/main/java/no/uib/inf101/colorgrid/TextQuestions.java

parent 6ed3ead3
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ public final class TextQuestions {
* How many methods does a class implementing IColorGrid need to
* implement at minimum?
*/
static final Integer a1 = null;
static final Integer a1 = 5;
/**
* Consider the interface IColorGrid, and notice how it extends the
......@@ -18,7 +18,7 @@ public final class TextQuestions {
* true or false: If an object has the type IColorGrid, it must
* also have the type CellColorCollection.
*/
static final Boolean a2 = null;
static final Boolean a2 = true;
/**
* Consider the interface IColorGrid, and notice how it extends the
......@@ -27,7 +27,7 @@ public final class TextQuestions {
* true or false: If an object has the type CellColorCollection, it
* must also have the type IColorGrid.
*/
static final Boolean a3 = null;
static final Boolean a3 = false;
/**
* Consider the interface IColorGrid, and notice how it extends the
......@@ -36,7 +36,7 @@ public final class TextQuestions {
* true or false: If an object has the type GridDimension, it
* must also have the type CellColorCollection.
*/
static final Boolean a4 = null;
static final Boolean a4 = false;
/**
* Consider the interface IColorGrid, and notice how it extends the
......@@ -45,7 +45,7 @@ public final class TextQuestions {
* true or false: for an object to have the type IColorGrid, it must
* belong to a class that implements the interface IColorGrid.
*/
static final Boolean a5 = null;
static final Boolean a5 = true;
/**
* Consider the interface IColorGrid, and notice how it extends the
......@@ -54,5 +54,5 @@ public final class TextQuestions {
* true or false: for a class to inherit the type GridDimension, it is
* sufficient to implements IColorGrid.
*/
static final Boolean a6 = null;
static final Boolean a6 = true;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment