A1-Getting Started Text + Console Applications & Output

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

1/43

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

44 Terms

1
New cards

Binary

A number system where only the numbers zero and one are used

2
New cards

Byte Code

Code that is understood by a JVM

3
New cards

Class Files

Files that contain byte code and have a .class extension

4
New cards

Compiler

A program that checks your code and gives you errors if there are problems with it. If there are no problems with your code, the compiler will translate your code into another language.

5
New cards

Compiling

The process of converting code written in one language to another

6
New cards

Console

A text only area where the user and the program interact

7
New cards

Console Application

A program that interacts with the user through a console

8
New cards

Debugger

A program that allows the programmer to monitor and manipulate data while a program is running

9
New cards

Debugging

The act of hunting down errors and removing them from a program

10
New cards

Editor

A program used for writing code

11
New cards

Executing

Running a program

12
New cards

Garbage Collector

A program that monitors created data and automatically deletes it when it is no longer being used by a program

13
New cards

Graphical Application

A program that has a GUI

14
New cards

Graphical User Interface (GUI)

An interface that consists of both text and not-text graphical output

15
New cards

High Level Programming Languages

Languages that take more work for the computer to decode, but are easier to program in

16
New cards

Integrated Development Environment (IDE)

A single program that contains an editor, compiler and debugger

17
New cards

Java Development Kit (JDK)

This program contains the tools needed to build and run Java programs. Contains a JVM and JRE.

18
New cards

Java File

Contains code written in Java and has a .java extension

19
New cards

Java Runtime Environment (JRE)

A program that allows the computer to run java applications

20
New cards

Java Virtual Machine (JVM)

A program in the JRE that translates bytecode into code that can run on the local machine. The JVM contains the garbage collector.

21
New cards

Logic Error

When a program produces the incorrect output due to a flaw in programming

22
New cards

Low Level Programming Languages

Languages that need few translations to reach machine code, but they tend to be more difficult to program in

23
New cards

Machine Code

A language that the computer understands and consists of commands written only in binary

24
New cards

Memory Leak

A problem where data gets created, but never deleted

25
New cards

Object Oriented Languages

Languages that allow the programmer to create “Objects” that store custom sets of data and can perform actions involving that data

26
New cards

Operating System

A program that works as a middle man for communication between the user/other programs and the hardware

27
New cards

Platform Dependent Programs

Programs that are limited on what computers they will work on based on hardware/software requirements

28
New cards

Platform Independent Programs

Programs that work on virtually any machine no matter what hardware or software it has

29
New cards

Program

A set of commands written in a computer language to perform a task

30
New cards

Programmer

The person that writes a program

31
New cards

Programming

The act of writing a program in a computer language

32
New cards

Programming Language

A structured language that allows a programmer to communicate with the computer through the commands that exist in the programming language

33
New cards

Runtime Errors

Errors that occur when the program is being executed

34
New cards

Syntax Errors

Errors with the program code that prevents the compiler from being able to build the program

35
New cards

\”

Displays a “

36
New cards

\\

Displays a \

37
New cards

\t

Inserts a tab

38
New cards

\n

Moves the cursor to the beginning of the next line

39
New cards

//

Everything to the right of the comment symbol is a comment

40
New cards

/*

Everything to the right of the comment symbol and below it is a comment until the end of the multi-line comment is reached.

41
New cards

*/

Ends a multi-line comment

42
New cards

Comments

Text that is ignored by the compiler.

43
New cards

Escape Sequences

Special commands that can be used inside of double quotes.

44
New cards

Skeleton Code

A basic starting point for a given programming task.