Write a short quiz program that asks three true/false questions and stores the user's answers as booleans. At the end of the program, it should print the user's answers with the correct answers.
Note: you should use the same quiz questions and correct answers as the sample run below.
Sample run:
Java is a programming language, true or false?
true
Only numbers can be stored by variables in Java, true or false?
true
There are only 2 possible values that can be held by a boolean variable, true or false?
false
Question 1 - Your answer: true. Correct answer: true
Question 2 - Your answer: true. Correct answer: false
Question 3 - Your answer: false. Correct answer: true
the only code I have is listed below and i'm not sure if is right either. I'm just confused please help. Thanks.
/* Lesson 3 Coding Activity Question 3 */
import java.util.Scanner;
public class U1_L3_Activity_Three{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
String t;
String f;
System.out.println("Java is a programming language, true or false?");
t = scan.nextLine();
System.out.println("Only numbers can be stored by variables in Java, true or false?");
f = scan.nextLine();
Need help with writing booleans in java
so I'm writing code this is the prompt:
Write a short quiz program that asks three true/false questions and stores the user's answers as booleans. At the end of the program, it should print the user's answers with the correct answers.
Note: you should use the same quiz questions and correct answers as the sample run below.
Sample run:
Java is a programming language, true or false?
true
Only numbers can be stored by variables in Java, true or false?
true
There are only 2 possible values that can be held by a boolean variable, true or false?
false
Question 1 - Your answer: true. Correct answer: true
Question 2 - Your answer: true. Correct answer: false
Question 3 - Your answer: false. Correct answer: true
the only code I have is listed below and i'm not sure if is right either. I'm just confused please help. Thanks.
/* Lesson 3 Coding Activity Question 3 */
import java.util.Scanner;
public class U1_L3_Activity_Three{
public static void main(String[] args){
}
}
Thank you so much!
Happy to help you.
Please mark my answer if my post helps
Thanks!