Chapter 6: More Conditionals and Loops

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts from Chapter 6 on conditionals and loops in Java.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Switch Statement

A control statement that evaluates an expression and matches the result to multiple possible cases.

2
New cards

Conditional Operator

A ternary operator that evaluates one of two expressions based on a boolean condition.

3
New cards

Do Statement

A control structure that executes a statement-list once and then repeatedly executes it while a condition is true.

4
New cards

For Loop

A control structure that provides a compact way to iterate over a range or collection.

5
New cards

Graphic Transformations

Techniques used to manipulate the display of graphical objects including translation, scaling, rotation, and shearing.

6
New cards

Default Case

A case in a switch statement that executes if none of the specified case values match the expression.

7
New cards

Exhaustive Switch Expression

A switch expression that includes a default case to handle unmatched values.

8
New cards

For-each Loop

A simplified version of the for loop used to iterate over elements in a collection without needing an explicit iterator.

9
New cards

JavaFX Transformations

Transformations applied to nodes in JavaFX that change their visual presentation.

10
New cards

Increment Section in For Loop

The part of the for loop that updates the loop control variable after each iteration.