201k views
5 votes
The ________ statement is used to make simple decisions in java.

1 Answer

2 votes

Answer:

The "If" statement.

Step-by-step explanation:

The if statement is the simplest example of a decision structure in Java. In an if statement a logical test is made which can evaluate to either true or false. If the result of the test is true, the statements in the if branch are executed.

User PaulDaviesC
by
6.4k points