c language quiz

c language quiz

University

9 Qs

quiz-placeholder

Similar activities

Determining System Requirements

Determining System Requirements

University

11 Qs

Programming in C

Programming in C

University

10 Qs

LA5.C5: Branching and Subroutines

LA5.C5: Branching and Subroutines

9th Grade - University

14 Qs

DBMS 1

DBMS 1

University

10 Qs

basic computer design

basic computer design

University

10 Qs

Олимпиада Web-программирование

Олимпиада Web-программирование

University

10 Qs

Fondos CSS3

Fondos CSS3

University

10 Qs

Guess the Retro Computer 1

Guess the Retro Computer 1

KG - Professional Development

13 Qs

c language quiz

c language quiz

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

ekta dureja

Used 492+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the function cannot be a structure member?

Another structure

Function

Array

None

2.

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");

​​​}

}

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following is an invalid assignment operator?

A%=10;

A/=10;

A|=10

none

4.

MULTIPLE CHOICE QUESTION

30 sec • Ungraded

Assignment statements assigning value to local static variables are executed only once

true

false

depends upon compiler

none

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

6

7

8

9

6.

OPEN ENDED QUESTION

30 sec • 1 pt

How would you describe your experience with us?

Evaluate responses using AI:

OFF

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

find output

22

23

24

25

8.

OPEN ENDED QUESTION

30 sec • 1 pt

Media Image

how would you rate us?

Evaluate responses using AI:

OFF

9.

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");

​​​}

}