December 7, 2023

GATE 2021 CS-Set-2

Question 16 Consider the following ANSI C program. #include <stdio.h> int foo(intx, int y, int q) {          if ((x <= 0) && (y <= 0))               return […]
December 7, 2023

Question 14281 – GATE 2021 CS-Set-2

Consider the following ANSI C program. #include <stdio.h> int foo(intx, int y, int q) {          if ((x <= 0) && (y <= 0))               return q;          if […]
December 7, 2023

STQC-NIELIT SC-B 2021

Question 6 Rakesh is standing at a point. He walks 20 m towards the East and further 10m towards the South, then he walks 35m towards […]
December 8, 2023

Question 7951 – Programming

The output of executing the following C program is __________. #include<stdio.h> int total (int v)   { static int count=0; while(v)   { count += v&1; v ≫= […]