G Given : integer x = 40, y = 35, z = 20, w = 10. Comment about the output of the following two statements ? print x * y / z – w print x * y / (z – w) August 27, 2021 1 Min Read 0 341 August 27, 2021 1 Min Read 0 341 Answer : A. Differ by 80 Programming Editor Continue Reading
I I have a problem to solve that takes n as an input number. The problem has a property that given the solution for (n-1) ? I can easily solve the problem for n. Which programming technique will I use to solve such a problem ? August 27, 2021 1 Min Read 0 329 August 27, 2021 1 Min Read 0 329 Answer : D. Recursion Programming Editor Continue Reading
W Which of the following cannot be inherited ? August 27, 2021 1 Min Read 0 114 August 27, 2021 1 Min Read 0 114 Answer : C. Destructor Programming Editor Continue Reading