diff --git a/src/main/java/Questions.java b/src/main/java/Questions.java index 140e095..ffdd6e4 100644 --- a/src/main/java/Questions.java +++ b/src/main/java/Questions.java @@ -9,7 +9,7 @@ int question1(){ * * How many variables are in the class "Vehicle"? */ - return 0; + return 3; } int question2(){ @@ -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"; } }