
qrious1styr

Quiz
•
Computers
•
12th Grade
•
Medium
Standards-aligned
karan Kharode
Used 2+ times
FREE Resource
44 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Choose a right C Statement.
Loops or Repetition block executes a group of statements repeatedly.
Loop is usually executed as long as a condition is met.
Loops usually take advantage of Loop Counter
All the above.
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of C Program.?
int main()
{
int a=5;
while(a >= 3);
{
printf("RABBIT\n");
break;
}
printf("GREEN");
return 0;
}
GREEN
RABBIT GREEN
RABBIT is printed infinite times
None of the above
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of C Program.?
int main()
{
int a=32;
do
{
printf("%d ", a);
a++;
}
while(a <= 30);
return 0;
}
32
33
30
No Output
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following printf
printf("%d",34+24/12%3*5/2-4);
35
-2
34
38
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code:
#include<stdio.h>
void main()
{
int a=10,b=80,c=45;
printf("%d",a<b>c);
}
0
1
10
Error
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code:
#include<stdio.h>
void main()
{
int a=10,b=-5;
printf("%d",a&&b);
}
1
0
Error
10
-5
Create a free account and access millions of resources
Similar Resources on Wayground
40 questions
Python-Quiz1

Quiz
•
12th Grade
42 questions
ภาษาซี

Quiz
•
9th - 12th Grade
40 questions
SUMMATIVE TEST IN COMPUTER PROGRAMMING - 2nd Qtr-1-23-2023

Quiz
•
12th Grade
46 questions
PYTHON PROGRAMMING - FINAL EXAM REVIEW

Quiz
•
9th - 12th Grade
40 questions
Pemrograman Dasar

Quiz
•
10th - 12th Grade
40 questions
Code Uncode 2.0

Quiz
•
12th Grade
40 questions
ข้อสอบปลายภาค การประยุกต์ใช้งานระบบควบคุมด้วยคอมพิวเตอร์

Quiz
•
12th Grade
40 questions
EE092206

Quiz
•
11th - 12th Grade
Popular Resources on Wayground
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World

Quiz
•
3rd - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
20 questions
ELA Advisory Review

Quiz
•
7th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Multiplication and Division Unknowns

Quiz
•
3rd Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade