Condsier teh code segment using Boolean Variables a,b,c, and d. if (a && b) if (
ID: 3621125 • Letter: C
Question
Condsier teh code segment using Boolean Variables a,b,c, and d.
if (a && b)
if (!c ll !d)
System.out.println("1");
else if (d)
System.out.println("2");
else
System.out.println("3");
else if (c== !d)
System.out.println("4");
else if (c)
System.out.println("5");
else
System.out.println("6");
Fill in the values (T or F) for a,b,c, and d that result in that output. If it doesn't matter use T/F. mark no way if it cannot be reached. What are the values for each spot in the grid.
Output a value b value c value d value no way
1 (T or F) (T or F) (T or F)
2
3
4
5
6
Explanation / Answer
Dear, They way of presentation might different. if (a && b) a b a && b T T T T F F F T F F F F step 1: if (a && b) execution done if a & b is true. explanation : if a & b is true then go to inside of the loop, otherwise go to step step 2: if (!c ll !d) c d !c !d !c||!d T T F F F T F F T T F T T F T F F T T T IF c and d any one is false then System.out.println("1"); otherwise goto step 5 step 3: else if (d) d T if d is T then System.out.println("2");. otherwise goto step 4 step 4: System.out.println("3"); step 5: if c & d are true's then check (c== !d) c d !d c==!d T T F F T F T T F T F T F F T F if c and d are both trues or falses then System.out.println("4");otherwise goto step 6. step 6: else if (c) c T F if c is true then System.out.println("5"); otherwise goto step 7 step 7: System.out.println("6"); explanation: first of all a and b both must be true then only anything can print. either c or d one must be false then print " 1 " if d is true then print " 2 " if d is false the print " 3 " 1, 2, 3 can possible. here c and d both not be false. only one is false. then print " 4 " if c is true then print " 5 " if c is false then print " 6 " a b c d 1 2 3 4 5 6 T T T T F F F F F F T T T F T F T T T F T T F T T T F T F T T T F F T F T F F T from 2 onwards (here already entered in loop) outputs can be possible like 1 3 4 5 1 2 4 6 1 3 6
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.