Jamia Millia Islamia MCA C Programming Language Previous Year Questions (PYQs) – Page 1 of 5

Jamia Millia Islamia MCA C Programming Language Previous Year Questions (PYQs) – Page 1 of 5

A Place for Latest Exam wise Questions, Videos, Previous Year Papers,
Study Stuff for MCA Examinations
logo

Which of the following errors can a compiler check?

1
2
3
4

logo

What will be values for $a$ and $c$ after execution of the following code if $a$ is $10$, $b$ is $5$, and $c$ is $10$? if ((a > b) && (a <= c)) a = a + 1; else c = c + 1;

1
2
3
4

logo

What is meant by 'a' in the following C file operation? fp = fopen("Random.txt", "a");

1
2
3
4

logo

The size of a union is determined by the size of the ________.

1
2
3
4

logo

Which of the following languages is case sensitive?

1
2
3
4

logo

C is a:

1
2
3
4

logo

The minimum number of temporary variables needed to swap the contents of two variables is:

1
2
3
4

logo

Consider the following C language declarations & statements. Which statement is erroneous? float f1 = 9.9; float f2 = 66; const float *ptrF1; float * const ptrF2 = &f2; ptrF1 = &f1; ptrF2++; ptrF1++;

1
2
3
4

logo

What will be output of following statements? int n1 = 3, n2 = 6, a; printf("(n1 ^ n2) + (a ^ a) = %d", (n1 ^ n2) + (a ^ a));

1
2
3
4

logo

What will be output of following statements? char ch; ch = 130; printf("\nvalue of ch=%d", ch);

1
2
3
4

Jamia Millia Islamia MCA


Online Test Series,
Information About Examination,
Syllabus, Notification
and More.

Click Here to
View More

Jamia Millia Islamia MCA


Online Test Series,
Information About Examination,
Syllabus, Notification
and More.

Click Here to
View More

Ask Your Question or Put Your Review.

loading...