APCSA Unit 1- College Board Video Notes

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

flashcard set

Earn XP

Description and Tags

Based off College Board videos

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

Block comments

Text between /* and */ characters ignored by the compiler. Includes name, date, purpose.

2
New cards

Main method

Controls program action. Example:public static void main(String[] args){.

3
New cards

System.out

Object for console output. Example:System.out.print / System.out.println.

4
New cards

String literals

Exact sequence of characters enclosed in quotation marks.

5
New cards

Syntax errors

Mistakes in code structure. Example:system.out.prnt, (“A Rocks);.

6
New cards

Logic errors

Incorrect usage of code leading to unexpected results.

7
New cards

Variables

Named memory locations holding specific values.

8
New cards

Constant

Variable with a value that cannot change, declared using 'final'.

9
New cards

Literal

Source code representation of a fixed value. Example:3.

10
New cards

Basic Arithmetic Operators

Include +, -, *, /, % (modulus).

11
New cards

Operator Precedence

Follows PEMDAS, left to right evaluation.

12
New cards

Equal Sign (=)

Assigns value on the right to the variable on the left.

13
New cards

Compound Assignment Operators

Include +=, x++; for concise operations.

14
New cards

Increment and Decrement Operators

Used to add or subtract 1 from a value.

15
New cards

Casting

Changing data type of a variable in Java.

16
New cards

Int

Range from -2147483647 to 2147483647 (Integer.MIN_VALUE to Integer.MAX_VALUE).

17
New cards

Double

Supports up to 14-15 digits, unexpected results beyond range.