October 6, 2023

Programming-for-Output-Problems

Question 9 How many lines of output does the following C code produce? #include<stdio.h> float i=2.0; float j=1.0; float sum = 0.0; main() { while (i/j […]
October 6, 2023

Programming-for-Output-Problems

Question 16 Consider the following code segment for (int k=0; k<20; k=k+2) { if (k % 3 == 1) system.out.print(k+ ” “) } What is printed […]
October 6, 2023

Programming-for-Output-Problems

Question 26 Consider the following declaration: int a, *b=&a, **c=&b; The following program fragment a=4; **c=5; A does not change the value of a B assigns […]
October 6, 2023

UGC NET CS 2014 Dec – paper-3

Question 1 A hierarchical memory system that uses cache memory has cache access time of 50 nano seconds, main memory access time of 300 nanoseconds, 75% […]
error: Alert: Content selection is disabled!!