Chapter 3: Making decisions Flashcards

1
Q

Control flow statements allow applications to execute specific code segments selectively.

A

True

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

A block of code in Java consists of zero or more statements enclosed in balanced braces ({}).

A

True

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

The target of a decision-making statement can be a single statement or a block of statements.

A

True

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

The if statement requires curly braces only when it has multiple statements.

A

True

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

The else statement in Java is optional.

A

True

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

Java 16 introduced pattern matching with if statements and the instanceof operator.

A

True

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

Pattern matching increases boilerplate code in Java applications.
If false, why?

A

Pattern matching reduces redundant code, making it more concise.
(Answer: False)

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

The pattern variable in pattern matching must be explicitly cast before use.

A

False: The instanceof check implicitly casts the variable when the condition is met.

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

A pattern variable can be of the same type as the left-hand side of an instanceof expression. If false, why?

A

The instanceof check implicitly casts the variable when the condition is met.

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

Pattern matching allows an instanceof expression to declare variables with a type different from the checked type.
If false, why?

A

The pattern variable must match a subtype of the checked type.

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

Given Integer value = 123;, both if(value instanceof Integer) {} and if(value instanceof Integer data) {} compile successfully.
If false, why?

A

The second statement does not compile because pattern matching requires the pattern variable type to be a strict subtype of Integer.

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

The traditional instanceof operator enforces the same subtype restrictions as pattern matching.
If false, why?

A

Traditional instanceof does not require the type to be a strict subtype.

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

The compiler applies flow scoping when working with pattern matching.

A

True

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

Flow scoping means the variable is only in scope when the compiler can definitively determine its type.

A

True

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

Flow scoping is not strictly hierarchical like instance, class, or local scoping.

A

True

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

A switch statement allows case values to be combined using commas.

A

True

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

A switch statement does not require any case statements.

A

True

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

The break statement is optional inside switch cases.

A

True

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

A switch statement does not require parentheses. If false, why?

A

Parentheses are required in a switch statement.

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

A switch statement does not require a beginning curly brace.

A

A beginning curly brace is mandatory.

21
Q

The default case is required in a switch statement.

A

The default case is optional.

22
Q

A break statement always terminates the switch statement.

A

If break is omitted, execution continues to the next case.

23
Q

Flow scoping works exactly like local variable scoping.

A

Flow scoping is based on program flow, not hierarchical rules.

24
Q

In pattern matching, a variable declared inside an if statement always remains in scope outside it.

A

The variable remains in scope only if the compiler guarantees its type.

25
Q

Does the default case in a Java switch statement have to be the last case?

A

No, the default case can appear anywhere in the switch block. There is no rule requiring it to be the last case.

26
Q

How does the default case behave in a switch statement?

A

It behaves like any other case label, meaning execution continues sequentially unless interrupted by a break, return, or another control flow statement.

27
Q

What happens if the default case is placed before other cases without a break?

A

Execution will fall through to the next case unless a break or other control flow statement is present.

28
Q

Can a default case fall through to another case like a regular case label?

A

Yes, if there is no break statement, execution will continue into the next case.

29
Q

Why does Java allow default to be placed anywhere in a switch block?

A

Because default is treated like a regular case label, and Java does not enforce a specific position for it.

30
Q

What primitive data types are supported in a switch statement?

A

int, byte, short, and char.

31
Q

What wrapper classes are supported in a switch statement?

A

Integer, Byte, Short, and Character.

32
Q

What non-primitive types are supported in a switch statement?

A

String, enum values, and var (if it resolves to a supported type).

33
Q

Which data types are NOT allowed in a switch statement?

A

boolean, long, float, and double (including their wrapper classes).

34
Q

Why is boolean not allowed in a switch statement?

A

Because it has too small a range of values (only true and false).

35
Q

Why are floating-point types (float and double) not allowed in a switch statement?

A

Because they have a very wide range of possible values, making them impractical for case comparisons.

36
Q

What types of values can be used in case statements?

A

Only compile-time constant values of the same data type as the switch value.

37
Q

What are valid case statement values?

A

Literals, enum constants, or final constant variables initialized with a literal.

38
Q

Can a case statement value be determined at runtime?

A

No, case values must be compile-time constants and cannot result from method calls.

39
Q

What is a switch expression?

A

A switch construct that returns a value and must have all branches return a compatible data type.

40
Q

What is required for a switch expression to work?

A

All case and default branches must return a value of a compatible data type.

41
Q

How can case values be grouped in a switch expression?

A

By combining multiple case values using commas (e.g., case 1, 2, 3 ->).

42
Q

What are the two types of branches in a switch expression?

A

Expression branches and block branches.

43
Q

When is a default branch required in a switch expression?

A

When not all possible cases are covered, or when a value is being returned.

44
Q

What must happen if a switch expression returns a value?

A

Every branch that isn’t an expression must yield a value.

45
Q

What punctuation is required after a switch expression?

A

A semicolon (;).

46
Q

What is the size of a byte in Java?

A

A byte in Java is 8 bits (1 byte) in size.

47
Q

What is the minimum value a byte can hold in Java?

A

The minimum value of a byte in Java is -128.

48
Q

What is the maximum value a byte can hold in Java?

A

The maximum value of a byte in Java is 127.

49
Q

What happens if you assign a value outside the range of a byte in Java?

A

If you assign a value outside the byte range (-128 to 127), the compiler throws a “possible lossy conversion” error unless explicit type casting is used.