Java Basics Flashcards

To maintain and learn basics on Java.

1
Q

What does platform independence mean?

A

It means that Java can be run on many types of computers.

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

What is the JRE?

A

The Java Runtime Environment.

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

What is the JVM?

A

The Java Virtual Machine, is an emulator a program that sets aside part of your hard drive to act like a computer (JVM) that can execute Java programs.

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

Object Orientation

A

Java is inherently object-oriented, which means that Java programs are made up from programming elements called objects.

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

What is a class?

A

A class is the program code you write to create objects.

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

What is the Java API?

A

Java API short for application programming interface, is a library with 100’s of classes, and 1000’s of methods.

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

What is an applet?

A

Applets are Java programs that run directly within a web browser.

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

What is a servlet?

A

Servlets are web-based Java programs that run on an internet server computer rather than in an Internet user’s web browser.

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

What is JDK?

A

Java Development Kit, it is the toolkit for developers that includes the Java compiler and the runtime environment.

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

What is SDK?

A

Software Development Kit is what Sun called the JDK for versions 1.2, 1.3, and 1.4.

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

What is Java SE?

A

Java Standard Edition, a term that describes the Java language and the basic set of API libraries that are used to creat Java programs that can run on Windows, Linux, and other platforms, such as Macintosh.

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

What is J2SE?

A

Java 2 Standard Edition, an older term for the Java language, and basic libraries.

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

What is Java EE?

A

Java Enterprise Edition, also known as J2EE, and expanded set of API libraries that provide special functions such as servlets.

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