October 10, 2023

Programming

Question 1 Consider the following ANSI C program. # include <stdio.h> int main() {             int i, j, count;             count = 0;             i = 0;             for (j […]
October 10, 2023

Programming

Question 37 What is printed by the print statements in the program P1 assuming call by reference parameter passing? Program P1() { x = 10; y […]
October 10, 2023

NTA UGC NET DEC-2022 Paper-2

Question 9 Machine Level Language is a/an A Assembly Language B Low level language C High level Language D Translating Language ProgrammingMemory-HierarchyVideo-Explanation Question 9 Explanation:  Machine […]
October 11, 2023

UGC NET CS 2010 Dec-Paper-2

Question 11 How many of the following declarations are correct ? int z = 7.0; double void = 0.000; short array [2] = {0, 1, 2}; […]
October 11, 2023

GATE 2017 [Set-2]

Question 2 Match the following:   A P→(ii), Q→(iv), R→(i), S→(iii) B P→(ii), Q→(i), R→(iv), S→(iii) C P→(ii), Q→(iv), R→(iii), S→(i) D P→(iii), Q→(iv), R→(i), S→(ii) […]
October 12, 2023

Programming

Question 189 An external variable A is globally accessible by all functions B has a declaration “extern” associated with it when declared within a function C […]
October 12, 2023

Programming

Question 2 A program attempts to generate as many permutations as possible of the string, ‘abcd’ by pushing the characters a, b, c, d in the […]
October 12, 2023

Programming

Question 15 What value would the following function return for the input x=95? Function fun (x:integer):integer; Begin If x > 100 then fun = x - […]
October 12, 2023

Programming

Question 5 Consider the following high level program segment. Give the contents of the memory locations for variables W, X, Y and Z after the execution […]
October 13, 2023

UGC NET CS 2007 June-Paper-2

Question 11 The following loop in ‘C’ : int i=0; while (i++ < 0) i– ; A will terminate B will go into an infinite loop […]
October 13, 2023

UGC NET CS 2007 June-Paper-2

Question 12 In case of right shift bitwise operator in ‘C’ language, after shifting n bits, the leftmost n bits : A are always filled with […]
October 16, 2023

Nielit Scientist-B CS 4-12-2016

Question 13 What will be output if you will compile and execute the following C code? void main() { printf(“%d”,sizeof(5.2)); } A 4 B 8 C […]