C Programming Quiz

C Programming Quiz

Professional Development

41 Qs

quiz-placeholder

Similar activities

ITC COURSE TEST

ITC COURSE TEST

KG - Professional Development

41 Qs

Merry Driver Go Round

Merry Driver Go Round

Professional Development

45 Qs

Java Feature

Java Feature

Professional Development

42 Qs

sains komputer tingkatan 4

sains komputer tingkatan 4

Professional Development

45 Qs

Python Essentials 1 - Exam

Python Essentials 1 - Exam

Professional Development

40 Qs

SISKOM_X-TJKT

SISKOM_X-TJKT

Professional Development

44 Qs

POST TEST BIMTEK WUB IKM 2023

POST TEST BIMTEK WUB IKM 2023

Professional Development

40 Qs

OH MY ECMA

OH MY ECMA

University - Professional Development

44 Qs

C Programming Quiz

C Programming Quiz

Assessment

Quiz

Computers

Professional Development

Hard

Created by

GIST VOICE

FREE Resource

41 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this C code? #include void main() { int x=1,y=0,z=5; int a=x&&y||z++; printf("%d",z); }

6

5

0

Varies

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this C code? #include void main() { int x=1,z=3; int y=x<<3; printf("%d\n",y); }

-2147483648

Runtime Error

8

-1

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output? void main() { i=0x10+010+10; printf("\nx=%x",i); }

I=34

X=22

X=34

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Int i=20; Printf(“%X”,i); What is the output?

20

15

14

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the size of the following union declaration? Union test { int x; char y; float z; };

5

4

6

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the size of the following union declaration? struct test { int x; char y; float z; };

4

5

6

7

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C code? #include int main() { int x = 1, y = 2; int z = x & y == 2; printf("%d\n", z); }

0

1

Error

Depend on compiler

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?