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

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;

20 Cards in this Set

  • Front
  • Back

What two programming language was JAVA based upon?

C and C++

Must JAVA be compiled?

Java must be compiled.

Is JAVA designed to be cross platformed?

JAVA is designed for cross platforming.

What makes JAVA able to run across any platform?

JAVA's bit code is run using a virtual machine that can be installed on nearly any OS. Thus, the OS of the machine is not a determining factor.

JAVA's syntax is similar to what programming language?

Java's syntax is similar to C#.

Is JAVA a dynamic language?

No, JAVA is not a dynamic language.

Is JAVA object oriented?

JAVA is object oriented.

JAVA is designed to be written (how many times) and run (where)?

JAVA is designed to be written ONCE and run ANYWHERE.

T/F: Java is NOT a platform.

False. JAVA is a platform.

What year was JAVA released?

JAVA was released in the year 1995.

How was JAVA originally targeted to be used?

JAVA was originally targeted at programming interactive television sets and was re-targeted for the Internet.

The JVM is practically a ______ layer.

The JVM is practically an ABSTRACTION layer between the operating system and the programming language/environment since it allows for you to abstract away from the OS.

The JVM runs JAVA as ____ code.

The JVM runs JAVA as BYTEcode.

Bytecode is the assembly language for ____.

Bytecode is the assembly language for the JVM.

What does JVM stand for and what is it?

The JVM is the JAVA Virtual Machine and it runs the bytecode from the compiled JAVA program.

When JAVA is compiled, the compiled bytecode has what file extension?

When JAVA is compiled into bytecode it has the file extension of ".class".

Where do you edit your environment variables on a PC?

System > System Properties > Advanced Tab > Environment Variables.

What command would you use in CMD in order to compile your java program?

javac <filename>

What command would you use in CMD in order to run your compiled your java program?

java <filename>

What is the syntax for the method used to print values using JAVA?

System.out.println("<value to print>");