Search Header Logo

C language

Authored by Syeda shafaq

Computers

10th Grade

Used 22+ times

C language
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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()

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?