qrious1styr

qrious1styr

12th Grade

44 Qs

quiz-placeholder

Similar activities

C++ Chapter 10

C++ Chapter 10

9th - 12th Grade

43 Qs

OOP C++

OOP C++

12th Grade

39 Qs

CS Awesome Unit 4 Review

CS Awesome Unit 4 Review

9th - 12th Grade

46 Qs

Kelas 12

Kelas 12

12th Grade

45 Qs

Quizz PTS Kelas XI Struktur Data Array

Quizz PTS Kelas XI Struktur Data Array

11th Grade - University

40 Qs

3 Tri C# 1

3 Tri C# 1

12th Grade

40 Qs

Latihan 1 PBO XI RPL 2

Latihan 1 PBO XI RPL 2

10th Grade - University

40 Qs

C++ Programming

C++ Programming

9th - 12th Grade

40 Qs

qrious1styr

qrious1styr

Assessment

Quiz

Computers

12th Grade

Medium

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?