Getting Started with Java Flashcards

1
Q

Application

A

A standalone program on some computing device such as a desktop computer or a Smartphone

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Method

A

A set of operations that computer executes in response to its call

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The name of the file where the Java application named “HelloWorld” must be saved

A

HelloWorld.java

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What every Java application must have exactly one of

A

Main method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

You’ve typed the following Java program. What file name should you use to save it?

A

MyProgram.java

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Software that processes bytecode thereby simulating the operation of a computer

A

JVM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Software that translates a Java program into bytecode

A

Compiler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Software tool that combines the functionality of text editing, compiling and executing

A

IDE (Integrated Development Environement)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Software that allows you to execute a program step-by-step while inspecting its internal state

A

Debugger

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Bytecode can run _____.

A

On any host machine that can execute the JVM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The “native” language of a computer is called ____.

A

Machine code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

A computer built of hardware circuitry

A

Physical computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

A computer simulated by software

A

Virtual computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The physical computer on which a virtual computer runs

A

Host machine

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The main component of a virtual computer

A

Interpreter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q
A