Term Test 1 — Computer Programming (Java) 11 Review

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/28

flashcard set

Earn XP

Description and Tags

Vocabulary practice flashcards for Computer Programming (Java) 11 Term Test 1 based on Monlimar Development Academy pointers.

Last updated 12:04 AM on 9/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

29 Terms

1
New cards

Monlimar Development Academy Core Values

Competence, Resilience, Respect, and Service.

2
New cards

Flowchart Oval Symbol

The symbol used in flowcharts to represent the start or end (terminator) of a program.

3
New cards

Flowchart Parallelogram Symbol

The symbol used in flowcharts to represent input and output operations.

4
New cards

Flowchart Diamond Symbol

The symbol used in flowcharts to represent a decision-making point or conditional branching.

5
New cards

Flowchart Rectangle Symbol

The symbol used in flowcharts to represent a process, action, or calculation step.

6
New cards

Upward-Pointing Flow Line

A directional arrow in a flowchart that points upwards, representing a repetition or loop structure.

7
New cards

Purpose of Flowcharts

Visual diagrams created before coding to identify logical errors early and present program logic clearly to non-programmers.

8
New cards

Pseudocode Data Sequence Rule

The strict rule that data must always be received using an INPUT keyword before it can be evaluated in an IF condition.

9
New cards

Algorithm

A step-by-step procedure or set of logical steps designed to solve a specific problem.

10
New cards

Tracing (Desk Checking)

The process of manually walking test values and edge cases through pseudocode during analysis to verify logic prior to coding.

11
New cards

Main Method

The entry point in Java where program execution always begins.

12
New cards

Sequential Flow

The default program execution order where code is executed line by line in sequence.

13
New cards

Single-line Comment (//)

A line prefix in Java that tells the compiler to ignore all subsequent text on that line.

14
New cards

String Data Type

The Java data type used to store textual data, such as a student's full name.

15
New cards

Double Data Type

The Java data type used to store decimal values, such as a family's income.

16
New cards

Boolean Data Type

The Java data type used for logical values that evaluate to either true or false.

17
New cards

Modulus Operator (%)

An arithmetic operator that divides one number by another and returns the remainder.

18
New cards

Integer Division in Java

Division performed between two integer values that truncates and discards any fractional part (for example, 10/310 / 3 evaluates to 33).

19
New cards

Relational Operator (<=)

A relational operator meaning 'less than or equal to', used for boundary conditions like 'P10,000 or below'.

20
New cards

Logical AND (&&)

A logical operator that evaluates to true if and only if both conditions are true.

21
New cards

Logical OR (||)

A logical operator that evaluates to true if at least one of the conditions is true.

22
New cards

Logical NOT (!)

A logical operator that reverses or inverts a boolean value.

23
New cards

Shorthand Assignment Operator (+=)

An operator that adds a value to a variable and reassigns the updated result to that variable in a single step.

24
New cards

Boolean Expression

A expression within an if statement condition that must evaluate strictly to true or false.

25
New cards

Single-Way Selection

An if statement structure where the associated code block is executed if the condition is true and skipped if false.

26
New cards

Scanner Class

A utility class in java.util used to read keyboard input from the user.

27
New cards

Scanner Import Statement

The code import java.util.Scanner; which makes the Scanner class available for use in Java.

28
New cards

Scanner Object Instantiation

The standard code used to create a Scanner object, such as Scanner input = new Scanner(System.in);.

29
New cards

System.out.println()

The standard Java output method that corresponds to the pseudocode keyword OUTPUT.