What will be output of the following code snippet? #include
int main() { int i; for (i=1;i<=5;i++) { if(i == i) continue; printf("%d ", i); } return 0; }
Previous 10 Questions — JECA MCA 2025
Nearest first
1
2
3
4
5
6
7
What will be output of the following code snippet? #include
int main() { float x = 5; if(x > 10…
Topic: JECA MCA 2025
Which of the following is not a type of computer code?
Topic: JECA MCA 2025
1 nibble = ______ bits
Topic: JECA MCA 2025
A system has a 16-bit data bus and a 20-bit address bus. What is the maximum amount of data (in bytes) the system can d…
Topic: JECA MCA 2025
Which of the following best distinguishes a sequential circuit from a combinational circuit?
Topic: JECA MCA 2025
Which of the following statements about RAM is correct?
Topic: JECA MCA 2025
Which of the following types of memory is non-volatile?
Topic: JECA MCA 2025
Next 10 Questions — JECA MCA 2025
Ascending by ID
1
2
3
4
5
6
7
8
9
10
Which of the following statements about arrays in C is correct?
Topic: JECA MCA 2025
Read the following statements about functions in C and choose the correct option: (i) A function in C can return o…
Topic: JECA MCA 2025
What happens when a recursive function in C lacks a proper base condition?
Topic: JECA MCA 2025
What will be the output of the following C code? #include
int main() { int a = 10; int *p = &a…
Topic: JECA MCA 2025
A risk in a software project has a probability of occurrence of 0.3 and the potential loss if it occurs is estimated to…
Topic: JECA MCA 2025
Which metric gives the best measure of efficiency in a defect discovery process across software development phases?
Topic: JECA MCA 2025
Which testing approach specifically ensures that all logical conditions in a decision are tested at least once?
Topic: JECA MCA 2025
Which of the following pairs correctly matches the type of testing with its main focus or environment?
Topic: JECA MCA 2025
Which of the following statements about structures and unions in C is true?
Topic: JECA MCA 2025
What will be the output of the following program? #include
int main() { char str1[20] = "Hello "; …
Topic: JECA MCA 2025