Java Flashcards

1
Q

What is Java?

A

Java is a general-purpose computer-programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. It is intended to let application developers “write once, run anywhere” (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of computer architecture.

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

Explain Decision Making Structures

A

Decision making structures have one or more conditions to be evaluated or tested by the program, along with a statement or statements that are to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false

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

Java programming language provides following types of decision making statements.

A
  1. if statement
  2. if..else statement
  3. nested if statement
  4. switch statement
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what does an IF Statement consist of?

A

An if statement consists of a Boolean expression followed by one or more statements.

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

What is the Syntax for an IF statement?

A
if(Boolean_expression) {
   // Statements will execute if the Boolean expression is true
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
if(Boolean_expression) {
   // Statements will execute if the Boolean expression is true
}

In the above example what happens if the boolean expression evaluates to true, what will happen if it does not evaluate to true?

A

If the Boolean expression evaluates to true then the block of code inside the if statement will be executed. If not, the first set of code after the end of the if statement (after the closing curly brace) will be executed.

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

Explain an IF..ELSE Statement

A
  1. An if statement can be followed by an optional else statement, which executes when the Boolean expression is false.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Syntax for an IF..ELSE statement

A
if(Boolean_expression) {
   // Executes when the Boolean expression is true
}else {
   // Executes when the Boolean expression is false
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Explain an IF..ELSE IF Statement

A

An if statement can be followed by an optional else if…else statement, which is very useful to test various conditions using single if…else if statement.

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

What are three points to keep in mind when using an if, else if, else statement?

A
  1. An if can have zero or one else’s and it must come after any else if’s.
  2. An if can have zero to many else if’s and they must come before the else.
  3. Once an else if succeeds, none of the remaining else if’s or else’s will be tested.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Syntax for an IF..ELSE IF Statement

A
if(Boolean_expression 1) {
   // Executes when the Boolean expression 1 is true
}else if(Boolean_expression 2) {
   // Executes when the Boolean expression 2 is true
}else if(Boolean_expression 3) {
   // Executes when the Boolean expression 3 is true
}else {
   // Executes when the none of the above condition is true.
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Explain a Nested IF Statement

A

It is always legal to nest if-else statements which means you can use one if or else if statement inside another if or else if statement.

if(Boolean_expression 1) {
   // Executes when the Boolean expression 1 is true
   if(Boolean_expression 2) {
      // Executes when the Boolean expression 2 is true
   }
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Explain a SWITCH Statement

A

A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each case.

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

What are the 7 Rules for a switch Statement?

A
  1. The variable used in a switch statement can only be integers, convertable integers (byte, short, char), strings and enums.
  2. You can have any number of case statements within a switch. Each case is followed by the value to be compared to and a colon.
  3. The value for a case must be the same data type as the variable in the switch and it must be a constant or a literal.
  4. When the variable being switched on is equal to a case, the statements following that case will execute until a break statement is reached.
  5. When a break statement is reached, the switch terminates, and the flow of control jumps to the next line following the switch statement.
  6. Not every case needs to contain a break. If no break appears, the flow of control will fall through to subsequent cases until a break is reached.
  7. A switch statement can have an optional default case, which must appear at the end of the switch. The default case can be used for performing a task when none of the cases is true. No break is needed in the default case.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly