✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Look at the following Java method:
public void greeting(int time) {
String result;
result = (time > 11) ? "Good day." : "Good morning.";
System.out.println(result);
}
What set of test cases is correct and would achieve 100% decision coverage in the corresponding control-flow graph?