C language

C language

10th Grade

10 Qs

quiz-placeholder

Similar activities

Programming Functions

Programming Functions

6th - 12th Grade

13 Qs

C Language

C Language

10th Grade - University

11 Qs

Struktur Kontrol Perulangan, Array, dan Function (Bahasa C)

Struktur Kontrol Perulangan, Array, dan Function (Bahasa C)

10th Grade

15 Qs

Computer

Computer

10th Grade

15 Qs

Ôn tập Xâu Tệp Chương Trình Con

Ôn tập Xâu Tệp Chương Trình Con

KG - 12th Grade

10 Qs

Chapter 04 Worksheet

Chapter 04 Worksheet

10th Grade

10 Qs

Recursivitate 2

Recursivitate 2

1st - 12th Grade

9 Qs

KT giữa kì - NMLT

KT giữa kì - NMLT

10th Grade - University

14 Qs

C language

C language

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Syeda shafaq

Used 22+ times

FREE Resource

10 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

void main()

{

​​​int color=2;

​​​switch(color)

​​​{

​​​​case 0: printf("black");

​​​​case 1: printf("blue");

​​​​case 2: printf("Green");

​​​​case 3: printf("aqua");

​​​​default:printf("other");

​​​}

}

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following printf:


int a=10;

b=++a;

printf("%d,%d",a,b);

11,11

10,11

11,10

10,10

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following Arithmetic Operators are having highest priority

/, *, %

+, -

Only * and /

Only /

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a logical AND operator?

||

!

&&

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times "CLanguage" is printed?

#include<stdio.h>

int main()

{

int x;

for(x=-1; x<=10; x++)

{

if(x < 5)

{

continue;

}

else

{

break;

}

printf("C Language");

}

}

10 times

11 times

0 times

Infinite times

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find out the error, if any in the below program?#include<stdio.h>

int main()

{

int j = 1;

switch(j)

{

printf("Hello programmer!");

case 1:

printf("Case1");

break;

case 2:

printf("Case2");

break;

}

}

No error in program and prints "Case1"

Error: Invalid printf statement after switch statement

Error: No default specified

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the function is more appropriate for reading a multi-word string?

puts()

gets()

printf()

scanf()

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?