What is the output of the following code snippet?
int int1=9, int2=3;
if (int1 == int2)
printf("%d", int1/int2);
else
printf("%d", int1%int2);
CIS1101-programming practice2

Quiz
•
Computers
•
University
•
Easy
Karen Tan
Used 2+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
3
0
9
1
2
2.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
What is the output of the following code snippet?
int num=15;
if (num >= 0)
printf("%d\n", num*=2);
else
printf("%d\n", num%=2);
20
10
50
30
40
3.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
What is the output of the following code snippet?
int m=7,n=3;
if(m>n)
printf("%d", m%n);
else if(m<n)
printf("%d", m/n);
else
printf("%d", m*n);
5
4
6
3
7
4.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
What is the output of the following code snippet?
float PerHeight = 178.89;
if (PerHeight < 150.0)
printf("The person is Dwarf. \n");
else if ((PerHeight >= 150.0) && (PerHeight < 165.0))
printf("The person is average heighted. \n");
else if ((PerHeight >= 165.0) && (PerHeight <= 195.0))
printf("The person is taller. \n");
else
printf("Abnormal height.\n");
The person is Dwarf
The person is average heighted.
The person is taller.
Abnormal height
5.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
What is the output of the following code snippet?
int num1=5, num2=9, num3=3;
if ((num1 > num2) && (num1 > num3))
printf("The 1st Number is the greatest among three. \n");
if ((num2 > num3) && (num2 > num1))
printf("The 2nd Number is the greatest among three \n");
if ((num3 > num1) && (num3 > num2))
printf("The 3rd Number is the greatest among three. \n");
The 1st Number is the greatest among three.
The 2nd Number is the greatest among three.
The 3rd Number is the greatest among three.
The 3 numbers are equal
6.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
What is the output of the following code snippet?
int sidea=32, sideb=35, sidec=32;
if(sidea==sideb && sideb==sidec)
{ printf("This is an equilateral triangle.\n"); }
else if(sidea==sideb || sidea==sidec || sideb==sidec)
{ printf("This is an isosceles triangle.\n"); }
else
{ printf("This is a scalene triangle.\n"); }
Equilateral
Isosceles
Scalene
7.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
Debug the following code below to make it run:
int int1, int2
printf(Input the values for Number1 and Number2 : ");
scanf("%d %d, &int1, int2);
if (int1 == int2);
printf("Number1 and Number2 are equal\n");
else
printf("Number1 and Number2 are not equal\n")
line 1: remove ;
line2: add open "
line 3: remove close " add & for int 2
line 4: remove ;
line 7: remove ;
line 1: add ;
line2: add close "
line 3: add open " add & for int 2
line 4: add ;
line 7: add ;
line 1: add ;
line2: add open "
line 3: add close " add & for int 2
line 4: remove ;
line 7: add ;
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
C Program Array and strings

Quiz
•
University
10 questions
Expression in C Programming

Quiz
•
University
15 questions
BASIC C PROGRAMMING QUIZ

Quiz
•
University
11 questions
C Language

Quiz
•
10th Grade - University
13 questions
ÔN TẬP C - mảng 1 chiều

Quiz
•
University
10 questions
Arrays in C (II yr 02.07.2020)

Quiz
•
University
12 questions
C Practice Test 1

Quiz
•
University
12 questions
Operators in C

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade