...
November 27, 2024

KVS 30-12-2018 Part B

Question 12 What is the following program segment doing? main() { int d=1; do { printf(“%d”\n”,d++); }while(d<=9); } A Adding 9 integers B Adding integers from […]
December 12, 2024

HCU PHD CS MAY 2016

Question 13 What is the output of the following program ? #include int main() { if(printf (“ABC”)) printf (“True”) ; else printf(“False”); return 0; } A […]
December 19, 2024

GATE 2005

Question 3 A common property of logic programming languages and functional languages is: A both are procedural languages B both are based on λ-calculus C both […]
December 22, 2024

Programming

Question 1 Consider the following two C code segments. Y and X are one and two dimensional arrays of size n and n × n respectively, […]