Answer the following statements true (T) or false (F)

1. A Boolean variable can only store the two values true or false.
2. To assign a value to a variable during run-time, drag the variable tile and drop it into the method editor where you want the set statement to be executed.
3. The ask user functions are used to get input from the user.
4. String addition is used to join two strings together.
5. Local variables are created in the local area of the Method Editor.


1. TRUE
2. TRUE
3. TRUE
4. FALSE
5. FALSE

Computer Science & Information Technology

You might also like to view...

Redirect standard output (Sobell, page 138) of echo to write a short mes- sage to a file and then use cat to display the contents of the file.

The echo builtin copies its arguments to standard output which, by default,
bash directs to the screen.
$ echo This message goes to standard output.
This message goes to standard output.

The cat utility sends the contents of a file specified by its argument to stan-
dard output.

Computer Science & Information Technology

In PHP, image coordinates start from the __________ corner.

a. bottom left b. top right c. top left d. bottom right

Computer Science & Information Technology

The default save location can be changed in the Save As dialog box.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The System.currentTimeMillis() returns ________________ .

a. the current time. b. the current time in milliseconds. c. the current time in milliseconds since midnight. d. the current time in milliseconds since midnight, January 1, 1970. e. the current time in milliseconds since midnight, January 1, 1970 GMT (the Unix time).

Computer Science & Information Technology