CIS1101-programming practice2

CIS1101-programming practice2

University

10 Qs

quiz-placeholder

Similar activities

Data Mining - Classification Mining

Data Mining - Classification Mining

University

15 Qs

Unit 28 - Quiz #1

Unit 28 - Quiz #1

University

15 Qs

TUTORR DASPROG

TUTORR DASPROG

University

10 Qs

PROBLEM SOLVING USING R  UNIT I  MCQS

PROBLEM SOLVING USING R UNIT I MCQS

University

15 Qs

SOII. Gestión ficheros y práctica

SOII. Gestión ficheros y práctica

University

10 Qs

Javascript

Javascript

University

12 Qs

Repaso F1007B (Bloque 3)

Repaso F1007B (Bloque 3)

University

10 Qs

Programación II Parte 5

Programación II Parte 5

University

10 Qs

CIS1101-programming practice2

CIS1101-programming practice2

Assessment

Quiz

Computers

University

Practice Problem

Easy

Created by

Karen Tan

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

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);

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 ;

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers