About Java
About Intechual
Print Statements
Comments
Challenge Potpourri
100

The non-coding delicious beverage that comes from a place off of Southeast Asia.

What is coffee?
100

Name two instructors.

Aditi, Ariel, Jolie, William, Thanu, Veda.

100

The result of passing a print statement.

What is the console displays text?

100

The syntax for comments.

What is "//" or "/* */" or "/** **/"?

100

What is javadoc?

What is documentation for java?

200

The Advanced Placement (AP) test that assesses student's knowledge on Java.

What is AP Computer Science (CS) A?

200

The college that created PracticeIt.

What is University of Washington?

200

The syntax for a print statement.

What is System.out.print("");? (Or what is System.out.println("");)

200

The location a comment can be in code.

What is anywhere?

200

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");?

300

The system computers use involving the digits 0 and 1.

What is binary?

300

The string of the first print statement the class coded.

What is "Hello World!"?

300

The difference between System.out.print(); and System.out.println();.

What is prints a line?

300

The difference between "//" and "/* */" (or "/** **/").

What is single line versus multi-line commentary?

300

Java is the _____ most popular language.

(First, second, third, etc.)

second

400

The general term for a software that converts code into binary.

What is Integrated Development Environment (IDE)?

400

The icebreaker activity question from yesterday.

What would you do if you won the lottery ($10 million)?

400

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

400

The use of comments in most workplaces.

What is to explain what the code does to make it easier for collaborators to follow?

400

The type of coding language Java is (out of the two types).

What is object-oriented programming?

500

The method/function with the actual instructions for the computer to follow.

What is main method? (Or what is main function?)

500

Another students in this session who is not currently present.

*check roster*

500

The output of this code:

System.out.println (  "Hello!" );

System.out.print ( "How are you?" );

System.out.println(":)");

What is:

Hello!

How are you?:)

500

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

500

The definition of a variable.

What is a symbol used to represent a value that can be changed?

M
e
n
u