Java Basics Flashcards
To maintain and learn basics on Java.
What does platform independence mean?
It means that Java can be run on many types of computers.
What is the JRE?
The Java Runtime Environment.
What is the JVM?
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.
Object Orientation
Java is inherently object-oriented, which means that Java programs are made up from programming elements called objects.
What is a class?
A class is the program code you write to create objects.
What is the Java API?
Java API short for application programming interface, is a library with 100’s of classes, and 1000’s of methods.
What is an applet?
Applets are Java programs that run directly within a web browser.
What is a servlet?
Servlets are web-based Java programs that run on an internet server computer rather than in an Internet user’s web browser.
What is JDK?
Java Development Kit, it is the toolkit for developers that includes the Java compiler and the runtime environment.
What is SDK?
Software Development Kit is what Sun called the JDK for versions 1.2, 1.3, and 1.4.
What is Java SE?
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.
What is J2SE?
Java 2 Standard Edition, an older term for the Java language, and basic libraries.
What is Java EE?
Java Enterprise Edition, also known as J2EE, and expanded set of API libraries that provide special functions such as servlets.