The non-coding delicious beverage that comes from a place off of Southeast Asia.
First names of both founders.
What is Sai and Harshita? (Or what is Harshita and Sai?)
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?
Name two instructors and what grades they are going to be starting this year.
Beginner Session #1:
What is Tia (10), Jolie (10), Gaurang (10), Charlotte (12), and/or Maha (11)?
Beginner Session #2:
What is Veda (12), Ariel (11), Addy (11), Sami (11), and/or Bandhna (12)?
The general term for a software that converts code into binary.
What is Integrated Development Environment (IDE)?
The icebreaker activity question.
What is the creature you would like to body swap with and why?
The output of this code:
System.out.println ( "//\\" );
System.out.println ( "////\\\\" );
System.out.println("//////\\\\\\");
What is:
//\
////\\
//////\\\
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 code for the output:
My "bon"nie lies over\\ the 'ocean'
My 'bon'nie lies \\over the "sea"
What is:
System.out.println("My \"bon\"nie lies over\\\\ the 'ocean'");
System.out.println("My 'bon'nie lies \\\\over the \"sea\""); //or may use a print statement for this line instead of println).
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?