Enum C++

Enum C++

1st - 3rd Grade

9 Qs

quiz-placeholder

Similar activities

python - print

python - print

3rd Grade

10 Qs

C# 11

C# 11

1st - 10th Grade

10 Qs

Python_Basic

Python_Basic

1st Grade

10 Qs

ASK TING 2

ASK TING 2

1st - 2nd Grade

10 Qs

INTRODUCTION TO OOP

INTRODUCTION TO OOP

1st - 3rd Grade

10 Qs

Yr 7 Flowgorithm

Yr 7 Flowgorithm

3rd Grade

10 Qs

Pascal Assessment

Pascal Assessment

3rd - 4th Grade

10 Qs

Introducción a Visual Basic.Net

Introducción a Visual Basic.Net

2nd Grade

10 Qs

Enum C++

Enum C++

Assessment

Quiz

Computers

1st - 3rd Grade

Hard

Created by

Mariana Encheva

Used 91+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

blue

2

1

None of these

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

Find the output of below program

blue

Compilation Error

1

2

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

Find the output of below program

yellow

black

Compilation Error

3

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Identify the incorrect option

enumerators are constants

enumerators are user-defined types

enumerators are same as macros

enumerator values start from 0 by default

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In which type do the enumerators are stored by the compiler?

string

integer

float

string & float

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

To which of these enumerators can be assigned?

integer

negative

enumerator

all of the mentioned

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will happen when defining the enumerated type?

it will not allocate memory

it will allocate memory

it will not allocate memory to its variables

allocate memory to objects

8.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which variable does equals in size with enum variable?

int variable

float variable

string variable

float & string variable

9.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

What will be the output of the following C++ code?

323232

323130

323334

323134