CS 150 Final Exam Study Guide

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards for CS 150 Final Exam Study Guide

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Programs

Another term for programs is software.

2
New cards

Byte

A byte is a collection of eight bits.

3
New cards

Variables

Symbolic names made up by the programmer that represent locations in the computer's RAM

4
New cards

Java Source Code File Suffix

The source code for a Java program is stored in a file that ends with a .java suffix.

5
New cards

Java Compiler

In order to translate a Java program to a class file, the computer needs to have software called a compiler.

6
New cards

Java Virtual Machine

In order to run Java programs on a computer, the computer needs to have software called a virtual machine.

7
New cards

Computer Programming

The act of designing and implementing a computer program.

8
New cards

Input Device

An example of an input device that interfaces between computers and humans: a keyboard.

9
New cards

Output Device

An example of an output device that interfaces between computers and humans: a speaker.

10
New cards

Logic Error

A logic error occurs when the programmer sets a divisor to zero and then uses it in a division statement.

11
New cards

Run-time Error

A run-time error occurs when the programmer sets divisor to zero then uses it in the statement numerator / Divisor.