Basic Java Flashcards
It allows developers to create Java programs that can be executed by the Java Runtime Environment (JRE).
JDK
What does JDK stand for?
Java Development Kit
A software used by a developer so that they can easily code in a certain programming language, has tons of features that can make programming easier.
IDE
What does IDE stand for?
Integrated development environment
A folder in a directory where we can throw all our related codes in the same directory.
Package
Are used to store temporary data to be used in our program’s runtime.
Variables
The type of data inside our variable
Data Type
Holds a Single character
Characters
Holds a set of characters/texts
String
Holds True or False
Boolean
It is the name of the variable that the programmer indicated it is used to Read and Write the variable.
Identifiers
The process of joining Strings together with the plus operator
Concatenation
Allows a program to take action based on the given condition. It makes our program smarter. Typically compares two values.
Conditional Statements
Handles 1 Conditional Expression, it either does something or nothing.
IF statement
Handles 2 Conditional Expressions, it either does the first Code Block or the second Code Block.
IF-ELSE statement