• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/9

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

9 Cards in this Set

  • Front
  • Back
Compiler
Analyzes the entire program and runs it. Translates from high-level language to machine language.
Interpreter
reads the code and executes the contained instructions.
Source Code
Human-readable code written in a programming language
Object Code
Results that a compiler produces, usually in machine language
Bytecode
Instructions that are fed into the Java Virtual Machine. Basically, machine language for a virtual machine
JIT Compiler
"Just In Time" compiler, interprets bytecode while compiling it into executable code. Download once, run anytime.
Machine Code
Binary
Linker
combines project modules into an executable
High-Level Language
A programming language, requiring a compiler to translate into a form a particular machine understands, focusing on user-friendly code development by automating core tasks such as accessing memory