qrious1styr

qrious1styr

12th Grade

44 Qs

quiz-placeholder

Similar activities

การเขียนโปรแกรมเชิงวัตถุฯ (Final)

การเขียนโปรแกรมเชิงวัตถุฯ (Final)

9th - 12th Grade

40 Qs

Java Basics Self-Check

Java Basics Self-Check

9th - 12th Grade

46 Qs

C++ Programming

C++ Programming

9th - 12th Grade

40 Qs

adders

adders

12th Grade

45 Qs

Ujian Tengah Semester Informatika

Ujian Tengah Semester Informatika

10th Grade - University

40 Qs

Pemrograman Berorientasi Objek 11RPL Sem 1

Pemrograman Berorientasi Objek 11RPL Sem 1

11th Grade - University

40 Qs

Assessment - Unit 1 Review

Assessment - Unit 1 Review

9th - 12th Grade

45 Qs

tin học 11 ôn tập cuối kì 1

tin học 11 ôn tập cuối kì 1

12th Grade

40 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?