Introduction to JAVA Programming

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

These flashcards cover key definitions and concepts related to JAVA programming as introduced in the lecture.

Last updated 3:11 PM on 4/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

10 Terms

1
New cards

WORA (Write Once, Run Anywhere)

A principle that compiled Java code can run on all platforms that support Java without the need for recompilation.

2
New cards

Java Virtual Machine (JVM)

An abstraction of a real computer that executes Java bytecode.

3
New cards

Keyword

A word that is built into the Java language with a specific and unchanging meaning, such as class, public, static, and void.

4
New cards

Identifier

A name used in a program to identify a variable, function, class, or other user-defined item.

5
New cards

Literals

Fixed values that can appear directly in the code, such as strings or numbers.

6
New cards

Comment

Text in the code that is not executed and is used to explain or annotate the code for human readers.

7
New cards

Scanner

A class in the Java API that provides methods to read input from various sources, including the keyboard.

8
New cards

Primitive Data Types

Basic data types in Java that include boolean, byte, char, short, int, long, float, and double.

9
New cards

Arithmetic Operator

Symbols used to perform basic mathematical operations such as addition (+), subtraction (-), multiplication (*), and division (/).

10
New cards

System.out.println()

A Java command used to display text output to the console.