319,204 views
32 votes
32 votes
The ________ statement is used to make simple decisions in java.

User Milos Mijatovic
by
2.7k points

1 Answer

26 votes
26 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 Patrick Brennan
by
2.8k points