...
October 20, 2023

Programming

Question 287 Consider the following program segment : d=0; for(i=1; i<31, ++i) for(j=1; j<31, ++j) for(k=1; k<31, ++k) if ((i+j+k)%3)= = 0); d = d + […]
October 20, 2023

Functions

Question 62 _______ is often used to prove the correctness of a recursive function. A Diagonalization B Communitivity C Mathematical Induction D Matrix Multiplication ProgrammingFunctionsUGC NET […]
October 20, 2023

UGC NET CS 2013 June-paper-2

Question 7 How many values can be held by an array A(–1,m;1,m) ? A m B m2 C m(m+1) D m(m+2) ProgrammingArrays Question 7 Explanation:  int […]
October 20, 2023

Programming

Question 348 What is the output of following C program? # include main( ) { int i, j, x = 0; for (i = 0; i […]