Weeks 1-4; Elementary, Conditionals, Loops Flashcards

1
Q

What are the two types of Java programs?

A

Applications: Standalone programs. Applets: Require a Java-enabled browser to run.

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

What are the three looping structures in Java?

A

while (pre-test loop), do-while (post-test loop), for (pre-test loop with control).

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

What is the difference between while and do-while?

A

while tests the condition first; do-while executes at least once before testing.

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

How do you structure a basic if statement?

A

An if statement checks a condition, and if it is true, executes a block of statements.

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

How do you structure a for loop?

A

A for loop combines initialization, condition check, and update in one line.

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

What is a flag in Java?

A

A boolean variable that monitors a condition in a program, e.g., boolean highScore.

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

How do you generate a random number in Java?

A

Use the Random class and methods like nextInt() or nextDouble() to generate numbers.

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

How are comments written in Java?

A

Single-line: // comment; Multi-line: /* comment /; Javadoc: /* comment */.

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

What is the purpose of the break statement?

A

Terminates a loop prematurely.

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

What is the purpose of the continue statement?

A

Skips the current iteration and moves to the next iteration.

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

How are strings compared in Java?

A

Use .equals(), .equalsIgnoreCase() for equality; .compareTo() for lexicographical order.

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

What is the syntax for a switch statement?

A

A switch statement evaluates a value and matches it against multiple cases for execution.

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

How do you create a constant in Java?

A

Use the final keyword to declare a constant value that cannot change.

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

How is input validated using a loop?

A

Use a while loop to repeatedly prompt the user until valid input is entered.

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

What is the purpose of curly braces {} in loops?

A

To group multiple statements into a block to execute together.

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

What are escape sequences in Java?

A

Examples: \n (newline), \t (tab), \ (backslash), “ (double quote).

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

What is the purpose of the Scanner class?

A

To read input from the user using methods like nextInt() or nextLine().

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

What are the three parts of a for loop?

A

Initialization: Sets the control variable. Condition: Tests the loop variable. Update: Modifies the control variable.

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

What is a sentinel value?

A

A special value indicating the end of input, e.g., -1 in a list of positive numbers.

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

What is the ternary operator?

A

A compact form of if-else: result = (condition) ? value1 : value2.

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

What is the Random class used for?

A

To generate random numbers using methods like nextInt() and nextDouble().

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

How is an infinite loop caused?

A

Forgetting to update the control variable or setting a condition that is always true.

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

What is a nested loop?

A

A loop inside another loop where the inner loop completes all iterations for each outer loop iteration.

24
Q

What are Java reserved keywords?

A

Examples: abstract, class, void, static, if, else, while, etc.

25
Q

How are local variables scoped?

A

Scope begins at declaration and ends at the method’s closing brace.

26
Q

How do you concatenate strings in Java?

A

Use the + operator, e.g., “Hello “ + “World”.

27
Q

What are arithmetic operators in Java?

A

+, -, *, /, %

28
Q

What is integer division?

A

Division with two integers truncates the decimal part, e.g., 5 / 2 = 2.

29
Q

How does System.out.printf work?

A

Used for formatted output, allowing control over display of variables and text.

30
Q

What are relational operators?

A

> , <, >=, <=, ==, !=

31
Q

How do logical operators work?

A

&&: AND, ||: OR, !: NOT

32
Q

How is a string’s length found?

A

Use the .length() method to retrieve the length of a string.

33
Q

What is a bytecode file?

A

A compiled Java file with .class extension, interpreted by the JVM.

34
Q

What are escape sequences for characters?

A

\n (newline), \t (tab), “ (quote), \ (backslash).

35
Q

What is Object-Oriented Programming (OOP)?

A

A programming paradigm based on objects that encapsulate data and behavior.

36
Q

What are the four pillars of OOP?

A

Encapsulation, Inheritance, Polymorphism, and Abstraction.

37
Q

What is encapsulation in Java?

A

Bundling data (fields) and methods that operate on the data into a single unit (class).

38
Q

How is inheritance implemented in Java?

A

Using the extends keyword to create a subclass from a parent class.

39
Q

What is polymorphism in Java?

A

The ability of objects to take on multiple forms, such as method overriding or overloading.

40
Q

What is abstraction in Java?

A

Hiding complex implementation details and showing only essential features.

41
Q

What is a class in Java?

A

A blueprint for creating objects that encapsulate data and methods.

42
Q

What is an object in Java?

A

An instance of a class containing specific data and behavior.

43
Q

How do you create an object in Java?

A

Use the new keyword: ClassName obj = new ClassName();

44
Q

What are constructors in Java?

A

Special methods used to initialize new objects.

45
Q

What is method overloading?

A

Defining multiple methods with the same name but different parameter lists.

46
Q

What is method overriding?

A

Redefining a method in a subclass that already exists in the parent class.

47
Q

What is the difference between this and super?

A

this refers to the current object; super refers to the parent class.

48
Q

What are interfaces in Java?

A

A reference type that defines abstract methods a class must implement.

49
Q

How do abstract classes differ from interfaces?

A

Abstract classes can have implemented methods; interfaces cannot (prior to Java 8).

50
Q

What is the static keyword used for?

A

To declare class-level variables or methods shared among all objects of a class.

51
Q

What is a control statement in Java?

A

A statement that determines the flow of execution, e.g., if, for, while, switch.

52
Q

What is the difference between pre-test and post-test loops?

A

Pre-test loops (while, for) check the condition before executing; post-test loops (do-while) execute at least once.

53
Q

How is the order of precedence determined in Java?

A

Operators are evaluated in a specific order: ! > arithmetic > relational > logical.

54
Q

What are the types of errors in Java?

A

Syntax errors, runtime errors, and logical errors.

55
Q

What is short-circuit evaluation in logical operators?

A

Logical AND (&&) stops if the first condition is false; logical OR (||) stops if the first condition is true.

56
Q

What are flowcharts used for in programming?

A

To visually represent the flow of control in algorithms or program logic.