...
September 15, 2024

Calloc-Malloc

Question 1 We use malloc and calloc for A Dynamic memory allocation B Static memory allocation C Both dynamic and static memory allocation D None of […]
September 19, 2024

UGC NET CS 2018-DEC Paper-2

Question 70 What does the following java function perform ? (Assume int occupies four bytes of storage) Public static int f(int a) { //Pre-conditions : a>0 […]
October 17, 2024

C-Programming

Question 2 Which of the following standard C library functions is best used to find the last occurrence of a character in a string ? A […]
October 18, 2024

Programming

Question 5 The integer value printed by the ANSI-C program given below is_____ . #include int funcp(){ static int x = 1; x++; return x; } […]