What is Java?
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.
Explain Decision Making Structures
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
Java programming language provides following types of decision making statements.
what does an IF Statement consist of?
An if statement consists of a Boolean expression followed by one or more statements.
What is the Syntax for an IF statement?
if(Boolean_expression) {
// Statements will execute if the Boolean expression is true
}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?
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.
Explain an IF..ELSE Statement
Syntax for an IF..ELSE statement
if(Boolean_expression) {
// Executes when the Boolean expression is true
}else {
// Executes when the Boolean expression is false
}Explain an IF..ELSE IF Statement
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.
What are three points to keep in mind when using an if, else if, else statement?
Syntax for an IF..ELSE IF Statement
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.
}Explain a Nested IF Statement
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
}
}Explain a SWITCH Statement
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.
What are the 7 Rules for a switch Statement?