Final Result Given 1 B 2 C 3 D 5 A3 C D B D Final Result Given 100 B 99 C 93 D 101 Q37071110

What is the final result, given that a = 1, b =2, c =3, and d=5?

a<=d || a>3 || c > d || b < d

What is the final result, given that a = 100, b =99, c =93, andd =101?

a<=d && c < 98 && b < d

What is the final result of the variable sum, given that a =100, b =99, c =93, and d =101?

if (a > d || b < c)

                       {

                                   sum = 100;

}

else

{

           sum = 0;

}


Solution


1)a = 1, b =2, c =3, and d =5a<=d || a>3 || c >

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.