#include<stdio.h>
int main()
{
int a = 5, b = 10;
printf("%d", a+++b);
return 0;
}
Round 3-Tech Titans
Quiz
•
Other
•
University
•
Hard
Tharun Kumar
Used 3+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include<stdio.h>
int main()
{
int a = 5, b = 10;
printf("%d", a+++b);
return 0;
}
15
35
Compile error
45
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include<stdio.h>
void fun(int n)
{
if(n == 0)
return;
fun(n-1);
printf("%d ", n);
}
int main()
{
fun(3);
return 0;
}
3 2 1
1 2 3
0 1 2 3
3 2
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include<stdio.h>
int main()
{
int a = 5;
printf("%d %d %d", a, a<<1, a>>1);
return 0;
}
5 10 2
5 2 10
5 5 5
Compile error
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include<stdio.h>
int main()
{
int a = 5;
printf("%d", sizeof(a++));
printf("%d", a);
return 0;
}
4 5
4 6
8 5
Compile error
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include<stdio.h>
int main()
{
int x = 0;
if(x = 10)
printf("Yes");
else printf("No");
return 0;
}
Yes
No
Compile error
Runtime error
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include<stdio.h>
int main()
{
int a = 10;
if(a++ > 10)
printf("A");
else if(a++ > 10)
printf("B");
else
printf("C");
return 0;
}
A
B
C
Compile error
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include<stdio.h>
int main()
{
char str[] = "abc";
printf("%c", 2[str]);
return 0;
}
a
b
c
Compile error
20 questions
TECHTRIX2025 BUGHUNT SET5
Quiz
•
University
20 questions
Type Conversions and Computation
Quiz
•
University
25 questions
Round 2- Syntax ShowDown
Quiz
•
University
15 questions
Tech quiz Round 1
Quiz
•
University
24 questions
Round 3: Coding Round
Quiz
•
University
15 questions
DEPTH DIVE
Quiz
•
University
15 questions
5CSE1_T&P questions
Quiz
•
University
20 questions
Kelas PHP
Quiz
•
University
15 questions
Multiplication Facts
Quiz
•
4th Grade
20 questions
Math Review - Grade 6
Quiz
•
6th Grade
20 questions
math review
Quiz
•
4th Grade
5 questions
capitalization in sentences
Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance
Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions
Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines
Quiz
•
Professional Development
12 questions
Dividing Fractions
Quiz
•
6th Grade