First Programs Flashcards

1
Q

What must a computer be able to do to perform useful tasks?

A

Communicate with the outside world.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the term for displaying information for users to read?

A

Output.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the first step in creating a program?

A

Convert instructions to pseudocode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the simple algorithm to print ‘The answer is 42’?

A

System.out.println(“The answer is 42”); or System.out.print(“The answer is 42”);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does the following Java program do?
public class Message1 {
public static void main(String[] args) {
System.out.println(‘The answer is 42’);
}
}

A

Prints ‘The answer is 42’ to the screen.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are comments in a program used for?

A

Help people understand the program.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the two styles of comments in Java?

A

Single line comment: // comment
Multi line comment: /* comment */

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the structure for defining a class in Java?

A

public class <CLASSNAME { <CONTENTS>
}</CONTENTS>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What must the name of the file containing a Java program match?

A

The name of the class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What method must every Java program contain?

A

One method called main.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the body of a method contain?

A

The instructions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What signifies the end of a statement in Java?

A

A semicolon.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is System.out in Java?

A

The standard output object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the method System.out.print do?

A

Displays a line of text without moving to a new line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the output of this code?
public class Wakey1 { public static void main(String[] args) {
System.out.print(‘Wake up’);
System.out.println(‘ at the back!’);
}
}

A

Wake up at the back!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the special character used to print a new line in Java?

17
Q

What is important for program layout?

A

Blank lines and indentation.

18
Q

How do you call a method in Java?

A

By using its name followed by parentheses () and a semicolon.

19
Q

What is a fundamental advantage of using methods in programming?

A

Reuse and simplify code.

20
Q

What does the following method do?
public static void triangle() {
System.out.println(‘ + ‘);
System.out.println(‘ + + ‘);
System.out.println(‘+—+’);
}

21
Q

What does the lamp method do in the following code?
public static void lamp() {
square();
triangle();
}

A

Draws a square followed by a triangle.

22
Q

What does the main method do in a Java program?

A

It is where the program starts execution.