Question: Consider a program given below for the selection of the largest of numbers. main ( ) { float A , B , C; printf (

Consider a program given below for the selection of the largest of
numbers.
main ()
{
float A, B, C;
printf (Enter 3 values:);
scanf (%d%d%d, &A, &B, &C);
printf (Largest value is);
if (A > B)
{
if (A > C)
printf (%d
, A);
else
printf (%d
, C);
}
else
{
if (C > B)
printf (%d, C);
else
printf (%f, B);
}
}
1-Design the set of test cases using BVA technique and equivalence class testing technique.solve with tables
2-Develop a decision table for this program.solve with tables

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!