PPT Flashcards
It is a strongly-typed programming language, which means that you cannot put or assign or store different types of data together.
Java
It is where the data should be stored.
Variable
To separate string literals from values of identifiers, use the + operator, which is also known as a _______.
concatenation operator
It is a simply a way to put together a group of related classes and Java has quite a number of packages for your use.
Packages
These are operators that return a Boolean value (either true or
false). It is depending on the truthfulness of the conditional
statement.
Relational Operators
It is used in selecting one of many code blocks to be executed.
Switch statement
It checks whether the repetition still
needs to be executed.
Condition
It changes the value of
the variable used in the condition.
Statement
It iterates through a block of code as long as
a specified condition is true.
while loop
It is used if you know exactly the number of
times you want to loop through a block of code.
for loop
It is once executed at the start of the
loop. This will be executed once.
Initializer
In this loop construct, repetition is achieved by doing or
executing the statement in the loop first, before checking
the condition.
do-while loop
It moves to the end of the iteration, and
then the test expression is evaluated,
and the update statement is evaluated in
case of the for loop.
Continue
It refers to the memory allocated to the program while it is running, or in other words, during
runtime.
dynamic memory
It is an array of arrays.
Multi-dimensional arrays