📚 Question Bank Q28 — Programming and Data Structure
Tags
Programming and Data Structure
Q28. Marks: +2.0 UGC NET Paper 2: Computer Science and Application 26th June 2025 Shift 1
What will be the output of the following C programming code:
int i, j;
 
for(i = 1; i < 5; i += 2)
for(j = 1; j < i; j += 2)
printf("%d", j);
 
1.1 ✓ Correct
2.1    2
3.1   3
4.1   1   3
📄 All “Programming and Data Structure” questions across papers
🏷 Change Tag for this Question