CPSC 110 Midterm

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/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

Keywords

Have a meaning in the programming language. Used for their intended, or reserved, purpose only.

2
New cards

Operators

Symbols or words that perform actions on operands; an item of (a number).

3
New cards

Punctuation

Mark beginning or ends of statements, separate items in a list, etc.

4
New cards

Identifiers

Similar to keywords; identify storage locations in memory and parts of the program created by the programmer.

5
New cards

Syntax

Rules to be followed while writing a program - dictates how punctuation, keywords, and operators are used.

6
New cards

Algorithm

A finite list of instructions used to solve a problem in a finite period of time.

7
New cards

Computer science

The study of algorithms.

8
New cards

Variable

The name of a storage location in the computer's memory that can hold data.

9
New cards

Binary

On = 1, Off = 2.

10
New cards

The && Operator

Both must be true.

11
New cards

The || Operator

At least one must be true.

12
New cards

The != Operator

F = T, T = F.

13
New cards

The Exclusive Operator

One, the other, but not both (A or B, but not A and B).

14
New cards

Memory

Lost when the computer is turned off; fast, expensive, volatile. ex. Solid state drive.

15
New cards

Storage

Slow, big, cheap, "permanent". ex. the hard drive.

16
New cards

RAM

Random access memory; variables stored here.

17
New cards

Compiler

A program that translates source code into an executable form.

18
New cards

Syntax Error

Mistakes done by the programmer that violate rules of the programming language.

19
New cards

Source Code

Programming statements written by the programmer and saved to a source file.

20
New cards

Java Compiler

Translates a source file into a file that contains byte code.

21
New cards

Java Virtual Machine

Executes byte code instructions.