From a224eda1853c96d688155690604a267d36102529 Mon Sep 17 00:00:00 2001 From: Gayathri-g-k Date: Sun, 2 Mar 2025 21:22:26 +0530 Subject: [PATCH] Update Questions.java --- src/main/java/Questions.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"; } }