C Programming Quiz

C Programming Quiz

Professional Development

30 Qs

quiz-placeholder

Similar activities

C Language Test - 2

C Language Test - 2

Professional Development

25 Qs

Quiz - I

Quiz - I

University - Professional Development

25 Qs

C BASICS

C BASICS

Professional Development

30 Qs

Quiz - Functions in C

Quiz - Functions in C

Professional Development

30 Qs

C Language Test

C Language Test

Professional Development

35 Qs

C Questions for BCA & BSc

C Questions for BCA & BSc

University - Professional Development

30 Qs

WOMANIA PRELIMS

WOMANIA PRELIMS

Professional Development

25 Qs

C Language Test 3

C Language Test 3

Professional Development

25 Qs

C Programming Quiz

C Programming Quiz

Assessment

Quiz

Computers

Professional Development

Hard

Created by

SI HACKATHON

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid variable name in C?

int 1stVariable

firstVariable

first variable

None of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code output? #include int main() { int a = 5, b = 10; printf("%d\n", a + b); return 0; }

5

10

15

Compilation Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you insert comments in C?

// comment

/* comment */

// comment /* comment */

All of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function is used to allocate memory dynamically in C?

malloc()

calloc()

realloc()

All of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? #include int main() { printf("%d\n", sizeof(char)); return 0; }

1

2

4

Undefined

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a data type in C?

int

float

real

char

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? #include int main() { int x = 10; x += 5; printf("%d\n", x); } return 0;

10

15

5

Compilation Error

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?