CIS1101-programming practice2

CIS1101-programming practice2

University

10 Qs

quiz-placeholder

Similar activities

C - Pointers

C - Pointers

University

10 Qs

C Programming Quiz-1

C Programming Quiz-1

University

10 Qs

Recursion

Recursion

University

8 Qs

Basics Of C Programming

Basics Of C Programming

University

10 Qs

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

Programming practices - C programming

Programming practices - C programming

University

9 Qs

Programming 1

Programming 1

University

10 Qs

C Practice Test 1

C Practice Test 1

University

12 Qs

CIS1101-programming practice2

CIS1101-programming practice2

Assessment

Quiz

Computers

University

Easy

Created by

Karen Tan

Used 2+ times

FREE Resource

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 ;

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?