Honors Programming 1 (2026-2027)

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

1/23

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:34 AM on 8/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

24 Terms

1
New cards

rule

required items for a program to compile/run

2
New cards

convention

items not required to compile, but generally accepted programming practices

3
New cards

naming convention

consistent, structured plan for naming things

4
New cards

camel case

the naming convention where the first letter of each additional word is capitalized with no spaces between words (Ex: camelCase)

5
New cards

upper camel case

the naming convention where the first letter of each word is capitalized with no spaces between words (Ex: CamelCase)

6
New cards

editor

used to write and manipulate source code

7
New cards

compiler

transforms source code written in a programming language into another computer language

8
New cards

Integrated Development Environment (IDE)

software application that provides comprehensive development tools to programmers

9
New cards

object

code that represents real and imaginary things in a program

10
New cards

class

a java file and the blueprint/template for creating objects (describes the states and behaviors)

11
New cards

method

behaviors (actions) of an object

12
New cards

field

stores the states/attributes of an object

13
New cards

public

used in the declaration of a class, method, or field that can be accessed by the members of any class

14
New cards

void

method modifier that returns nothing

15
New cards

argument

input by users or other methods

16
New cards

arithmetic operators

used in mathematical expressions in the same way that they are used in algebra ( +, -, *, /, %, ++, -- )

17
New cards

relational operators

return true or false ( >,

18
New cards

numeric literal

a sequence characters made of digits and up to one decimal point that may be preceded by a plus or minus sign

19
New cards

string literal

a sequence of characters enclosed in quotation marks

20
New cards

string concatenation

the operation of joining character strings end-to-end

21
New cards

comment

explanation or annotation in the source code of a program ignored by the computer

22
New cards

escape sequence

a combination of characters starting with a backslash () and placed within quotes with meaning beyond the literal characters

23
New cards

modulus

remainder of the division of one number by another

24
New cards

modulo

arithmetic operator (%) that returns the remainder of integer division