PPT Flashcards

1
Q

It is a strongly-typed programming language, which means that you cannot put or assign or store different types of data together.

A

Java

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

It is where the data should be stored.

A

Variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

To separate string literals from values of identifiers, use the + operator, which is also known as a _______.

A

concatenation operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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.

A

Packages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

These are operators that return a Boolean value (either true or
false). It is depending on the truthfulness of the conditional
statement.

A

Relational Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

It is used in selecting one of many code blocks to be executed.

A

Switch statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

It checks whether the repetition still
needs to be executed.

A

Condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

It changes the value of
the variable used in the condition.

A

Statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

It iterates through a block of code as long as
a specified condition is true.

A

while loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

It is used if you know exactly the number of
times you want to loop through a block of code.

A

for loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

It is once executed at the start of the
loop. This will be executed once.

A

Initializer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In this loop construct, repetition is achieved by doing or
executing the statement in the loop first, before checking
the condition.

A

do-while loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

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.

A

Continue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

It refers to the memory allocated to the program while it is running, or in other words, during
runtime.

A

dynamic memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

It is an array of arrays.

A

Multi-dimensional arrays

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

It is a method available in the System class
that can be used to copy data from one array to another
efficiently.

A

arraycopy

17
Q
A