W What is the output of the following pseudo code ? Int a = 456, b, c, d = 10; b = a/d; c = a-b; print c ? August 28, 2021 1 Min Read 0 2839 August 28, 2021 1 Min Read 0 2839 Answer : B. 411 Recursion and Iteration Editor Continue Reading
I Integer a =40, b =35, c=20, d =10 Comment about the output of the following two statements Print a*b/c-d Print a*b/(c-d) ? August 28, 2021 1 Min Read 0 1099 August 28, 2021 1 Min Read 0 1099 Answer : A . Differ by 80 Recursion and Iteration Editor Continue Reading