✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
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?