Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/Questions.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int question1(){
*
* How many variables are in the class "Vehicle"?
*/
return 0;
return 3;
}

int question2(){
Expand All @@ -18,14 +18,14 @@ int question2(){
*
* What line number represents the end of the "accelerate" method?
*/
return 0;
return 14;
}

String question3(){
/*
* What datatype is expected to be returned in the "honk" method?
*/
return "replace this text with your answer";
return "String";
}

}