CODE STORM

CODE STORM

Professional Development

20 Qs

quiz-placeholder

Similar activities

QUIZZ KJD - KOMPUTER DASAR

QUIZZ KJD - KOMPUTER DASAR

KG - Professional Development

25 Qs

C Quizz Day 1

C Quizz Day 1

Professional Development

25 Qs

Digital Electronics-Final

Digital Electronics-Final

University - Professional Development

15 Qs

Java Fundamentals and OOP Basics

Java Fundamentals and OOP Basics

Professional Development

15 Qs

TNP Test

TNP Test

Professional Development

15 Qs

Java Basics

Java Basics

Professional Development

22 Qs

Sensors & Transducers

Sensors & Transducers

Professional Development

22 Qs

Computer Organization and Architecture

Computer Organization and Architecture

Professional Development

20 Qs

CODE STORM

CODE STORM

Assessment

Quiz

Education

Professional Development

Hard

Created by

codemaker2023 codemaker2023

Used 3+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of given code:

main ()

{

const int z;

z=9;

print (z++);

}

10

9

Compilation Error

No Output

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of given code:

main ()

{

const int x;

x=25;

print(x);

}

0

25

No output

Compilation Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of given code:

main ()

{

int i;

i=1;

print (++i, i++, ++i);

}

2 3 4

2 1 2

2 2 4

4 2 4

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

main ()

{

print (4+”CodeMaker”);

}

Maker

CodeMaker

Error

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of given code:

main ()

{

int a[5]={1,2,3,4,5};

 int i,j,m;

 i=++a[2];

 j=a[1]++;

 m=a[i++];

 print(i,j,m);

}

3 2 5

4 2 5

5 3 5

5 2 5

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

main ()

{

enum days{MON=-1,TUE,WED=6,THU,FRI,SAT};

 print(++MON,TUE,WED,THU,FRI,SAT);

}

-1 0 1 2 3 4

0 1 6 3 4 5

0 0 6 7 8 9

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of given code:

main ()

{

    int i=4,j=8;

    print (i|j&i|j, i|j&&i|j, i^j);

}

12 1 12

112 1 12

32 1 12

-64 1 12

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?