What is decision making statement
Explaination and with programs
dm720291gmailcom:
ohk
Answers
Answered by
4
Decision making structures require that the programmer specifies one or more conditions to be evaluated or tested by the program, along with astatement or statements to be executed if the condition is determined to be true, and optionally, otherstatements to be executed if the condition is determined to be false
Answered by
3
Decision making in JAVA is the statement that makes a decision after testing a particular condition .
For example :
if-else statement is a decision making statement.
If else checks the condition .
If the condition is true , then the statement is executed.
If it is false , then the statement is not executed .
The ternary operators are another such example.
Similar questions