
C-Introduction

Quiz
•
English
•
1st Grade
•
Medium
Avani Khokhariya
Used 3+ times
FREE Resource
23 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include <stdio.h>
int main() {
int i = 17;
char c = 'c'; /* ascii value is 99 */
int sum; sum = i + c;
printf("Value of sum : %d\n", sum); }
116
96
98
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include <stdio.h> int main() {
int sum = 17, count = 5;
double mean;
mean = sum / count;
printf("Value of mean: %f\n", mean); }
3.0000
3.4000
3
3.500
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
#include <stdio.h> int main() {
int sum = 17, count = 5;
double mean;
mean = (double) sum / count;
printf("Value of mean: %f\n", mean); }
3.4000
3.000
3
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int main() {
int x = 1;
x = x++ + x++ + ++x;
printf("%d", x);
return 0;
}
7
8
6
5
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int main() {
int x = 1,y;
y = x++ + x++ + ++x;
printf("%d %d",y, x);
return 0;
}
6 , 6
6, 4
4,6
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int main() {
int i;
for(i = 0; i < 5; i++) {
if(i % 2 == 0)
continue;
printf("%d", i);
}
return 0;
}
1 2 3
1 2
1 3
1
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
int main() {
int x = 3, y = 4;
int z = (x > y) ? x++ : y++;
printf("%d %d %d", x, y, z);
return 0;
}
3 5 4
4 5 4
4 4 3
3 4 3
Create a free account and access millions of resources
Similar Resources on Wayground
20 questions
Password reset A2+/B1 Unit 3 Houses

Quiz
•
5th - 10th Grade
20 questions
IHAD Review

Quiz
•
9th Grade
25 questions
Multisyllable Words

Quiz
•
6th Grade - University
20 questions
Vocab 5

Quiz
•
12th Grade
25 questions
Quiz last paper

Quiz
•
9th - 12th Grade
18 questions
Loans

Quiz
•
University
25 questions
SET-3

Quiz
•
University
18 questions
3rd Grade Word Analysis

Quiz
•
3rd Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for English
18 questions
D189 1st Grade OG 1c Concept 37-38

Quiz
•
1st Grade
20 questions
Subject and predicate in sentences

Quiz
•
1st - 3rd Grade
14 questions
Plural Nouns Adding s and es

Quiz
•
1st - 2nd Grade
10 questions
Exploring Subject and Predicate in English Grammar

Interactive video
•
1st - 5th Grade
10 questions
Exploring Common and Proper Nouns

Interactive video
•
1st - 5th Grade
10 questions
Exploring Nonfiction Text Structures

Interactive video
•
1st - 5th Grade
20 questions
Singular and Plural Nouns

Quiz
•
1st - 2nd Grade
10 questions
1.2b Recognizing High Frequency Words

Quiz
•
1st Grade