✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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 ?