The Effect of Commenting on a Program's Output
What is no effect?
Int is short for
What is Integer?
The purpose of a scanner program
What is being able to input data?
The name of % is java
What is Modulo?
Java is an example of
What is a computer programming language?
//This is an example of ___ type of commenting
What is a single line comment
What is true?
A While-Do is a type of loop(true or false)
What is false?
The name of && is java
What is And?
The function of a monitor
What is to display?
The Difference between System.out.println() vs System.out.print()
System.out.println() moves the cursor to the next line while System.out.print() does not move the cursor
Boolean variable's two possible values
What is true and false?
The number of different types of loops we learned in class
What is 3?
The name of || in java
What is Or?
Shivani's favorite color?
What is green?
The output of the follow statement.
System.out.println("1234" + 1+2+3+9+1 +"123");
What is 123416123?
Variable b with the value 5.78 should be initialized as a
What is a double?
The statement neccessary between a numerical question and a String question in a Scanner program
What is s.nextLine();?
Name of ! in java
Something you learned in this course
Answers vary
The output of System.out.println();
The type of code that uses char values
What is Unicode?
The import statement for a Scanner program
What is import java.util.Scanner;?
The purpose of Operators
What is to perform logical , arithmetic calculations in our programs?
The inventor of Java
Who is James Gosling?