✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
public static void Print(int num)
{
if( num < 100 )
{
System.out.println("number is less than 100");
if(num > 50)
{
System.out.println("number is greater than 50");
}
}
System.out.println("Finish");
}
Based on the source code above, What is the branch coverage of test case num = 110 ?