qrious1styr

qrious1styr

12th Grade

44 Qs

quiz-placeholder

Similar activities

Practice PPS Complete Quiz

Practice PPS Complete Quiz

12th Grade - University

43 Qs

CodeHS Unit 3 Methods Practice

CodeHS Unit 3 Methods Practice

9th - 12th Grade

40 Qs

PCEP Questions in Python

PCEP Questions in Python

9th - 12th Grade

46 Qs

Their Python Exam

Their Python Exam

9th - 12th Grade

46 Qs

quiz operasi pascal

quiz operasi pascal

KG - Professional Development

39 Qs

G9-JavaScript

G9-JavaScript

9th Grade - University

44 Qs

C Programming Midterm Review

C Programming Midterm Review

11th - 12th Grade

40 Qs

XI Programming Methodology, introduction to C++

XI Programming Methodology, introduction to C++

9th - 12th Grade

46 Qs

qrious1styr

qrious1styr

Assessment

Quiz

Computers

12th Grade

Medium

CCSS
HSF.BF.A.2

Standards-aligned

Created by

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

What is an Algorithm?
A chart showing the flow of a series of events
Step-by-step instructions used to solve a problem
A decision arrived at by following instructions
A computer program that follows a chart

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

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?

Discover more resources for Computers