The non-coding delicious beverage that comes from a place off of Southeast Asia.
Name two instructors.
Aditi, Ariel, Jolie, William, Thanu, Veda.
The result of passing a print statement.
What is the console displays text?
The syntax for comments.
What is "//" or "/* */" or "/** **/"?
What is javadoc?
What is documentation for java?
The Advanced Placement (AP) test that assesses student's knowledge on Java.
What is AP Computer Science (CS) A?
The college that created PracticeIt.
What is University of Washington?
The syntax for a print statement.
What is System.out.print("");? (Or what is System.out.println("");)
The location a comment can be in code.
What is anywhere?
Use one line of code to get this output:
Over the river
and through the snow
To grandmother's house we go
What is System.out.print("Over the river\nand through the snow\nTo grandmother's house we go");?
The system computers use involving the digits 0 and 1.
What is binary?
The string of the first print statement the class coded.
What is "Hello World!"?
The difference between System.out.print(); and System.out.println();.
What is prints a line?
The difference between "//" and "/* */" (or "/** **/").
What is single line versus multi-line commentary?
Java is the _____ most popular language.
(First, second, third, etc.)
second
The general term for a software that converts code into binary.
What is Integrated Development Environment (IDE)?
The icebreaker activity question from yesterday.
What would you do if you won the lottery ($10 million)?
The output of this code:
System.out.print ( "We love Java " );
System.out.print ( " more than anything in the world" );
What is:
We love Java more than anything in the world
The use of comments in most workplaces.
What is to explain what the code does to make it easier for collaborators to follow?
The type of coding language Java is (out of the two types).
What is object-oriented programming?
The method/function with the actual instructions for the computer to follow.
What is main method? (Or what is main function?)
Another students in this session who is not currently present.
*check roster*
The output of this code:
System.out.println ( "Hello!" );
System.out.print ( "How are you?" );
System.out.println(":)");
What is:
Hello!
How are you?:)
The only text the IDE will consider when running this code:
we wish you a //merry Christmas we
wish you /** a merry Christmas
//we wish you a merry
**/ Christmas and a happy
new /*year*/
What is:
we wish you a
wish you
Christmas and a happy
new
The definition of a variable.
What is a symbol used to represent a value that can be changed?