csap basics

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

1/28

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

29 Terms

1
New cards

java

a high level class based, object oriented programming language

2
New cards

compile

compilers take java source code (a.jave.file) and tranform it into java bytecode (a.class.file), which can be executed by your computer

3
New cards

execute

running a program, which the computer does line by line until it’s done

4
New cards

syntax

the grammar rules that a programming language follows such as symbols, punctuations, and the structure you must use

5
New cards

JRE(java runtime enviornment)

downloading allows you to run java programs

6
New cards

JDK(java development kit)

downloading allows you to run and write java programs (come with JRE)

7
New cards

JVM(java virtual machine)

comes with JRE (and JDK since it comes with JRE) and it manages the virtual memory your program uses when executed

8
New cards

static

shared

9
New cards

void

return type

10
New cards

main

name of method

11
New cards

public

access modifier

12
New cards

class

groups of variables methods

13
New cards

System

is a class

14
New cards

.out.

variable printwriter

15
New cards

print

return type method

16
New cards

int

whole numbers

17
New cards

double

decimal numbers

18
New cards

char

single letter

19
New cards

boolean

true or false

20
New cards

+

addition

21
New cards

-

subtraction

22
New cards

*

multiplaction

23
New cards

/

division

24
New cards

%

modulo(remainders)

25
New cards

relational operators = != < >

give boolean answers

26
New cards

&&

and

27
New cards

||

or

28
New cards

!

not

29
New cards

who cares if i’m pretty…

if i fail my final