Enterprise Application Development 1

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

1/21

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering Java SE installation, primitive data types, memory sizes, casting, and core development concepts for Enterprise Application Development.

Last updated 2:36 PM on 6/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

22 Terms

1
New cards

Java Runtime Environment (JRE)

Holds the Java Virtual Machine, libraries, and other components that are necessary to run a java programme.

2
New cards

Java Development Kit (JDK)

Contains the compilers, necessary debuggers, and the JRE.

3
New cards

Java Virtual Machine (VM)

The environment in which Java programs run.

4
New cards

javac

The console command used to compile a Java file (e.g., javac MyFirstJavaProgram.java).

5
New cards

java -version

The console command used to check the installed version of Java.

6
New cards

byte

Stores whole number from 128-128 to 127127; size is 1byte1\,byte.

7
New cards

short

Stores whole number from 32,768-32,768 to 32,76732,767; size is 2bytes2\,bytes.

8
New cards

int

Stores whole number from 2,147,483,648-2,147,483,648 to 2,147,483,6472,147,483,647; size is 4bytes4\,bytes.

9
New cards

long

Stores whole number from 9,223,372,036,854,775,808-9,223,372,036,854,775,808 to 9,223,372,036,854,775,8079,223,372,036,854,775,807; size is 8bytes8\,bytes.

10
New cards

float

Stores fractional numbers with 66 to 77 decimal digits; size is 4bytes4\,bytes.

11
New cards

double

Stores fractional numbers with 1515 decimal digits; size is 8bytes8\,bytes.

12
New cards

char

Stores a single character or ASCII values; size is 2bytes2\,bytes.

13
New cards

boolean

Stores true or false; size is 1bit1\,bit.

14
New cards

Camel lettering

Recommended naming convention for variables, starting with a lower case letter (e.g., numberOne).

15
New cards

Narrowing

Casting where content is copied to another variable while decreasing current value capacity.

16
New cards

Widening

Casting where content is copied to another variable while increasing current value capacity.

17
New cards

Tokens

Small individual units of a program, including Reserved Keywords, Identifiers, Literals, Operators, and Separators.

18
New cards

System.out.println()

The method used to output a line of data or text to the console.

19
New cards

Scanner

A class from java.util used to obtain user input (e.g., sc.nextInt()).

20
New cards

JAR

Java ARchive file; the standard executable format in Java.

21
New cards

MANIFEST.MF

A metadata file included in a JAR that defines attributes like Manifest-Version, Main-Class, and Build-By.

22
New cards

Operator Precedence

A ranking where a larger number indicates higher precedence; for example, Parentheses have a precedence of 1515.