Computer Knowledge - MCQ Practice Questions
Practice free Computer Knowledge multiple-choice questions with detailed answers and explanations. Perfect for competitive exam preparation.
309 questions | 100% Free
Which of the following is used to declare a constant in C?
What is the purpose of the return statement in a C function?
What will be the output of: int x = 5; x += 3; printf("%d", x);?
Which loop in C does NOT check the condition before executing the loop body?
What will be the output of: int x = 5; int y = ++x; printf("%d %d", x, y);?
Which function is used to allocate memory dynamically in C?
What is the output of: int a = 10, b = 20; int temp = a; a = b; b = temp; printf("%d %d", a, b);?
In C, what does the scanf() function do?
What will be the output of: for(int i = 0; i < 3; i++) { printf("%d ", i); }?
Which of the following is the correct way to define a function that takes no parameters and returns no value?
What is the output of the following program: int x = 5; if(x > 3) printf("Greater"); else printf("Smaller");?
In C, when passing arrays to functions, what is actually passed?
What will be the output of: int a = 5; int *p = &a; printf("%d %d", a, *p);?
Which header file is required for using the printf() function?
What is the correct syntax to declare a constant in C?
Which operator is used to access the value at an address in C?
What does the sizeof() operator return?
Which of the following is a correct way to initialize a 1D array in C?
What is the return type of the malloc() function?
Which function is used to release dynamically allocated memory in C?