52.6k views
3 votes
In memory, what value will the MAPLE enumerator be stored as in the declaration enum Tree { OAK, MAPLE, PINE };?

A) 0
B) 1
C) 2
D) 3

User Npr
by
8.1k points

1 Answer

1 vote

Final answer:

The MAPLE enumerator in the declaration enum Tree { OAK, MAPLE, PINE } is stored with the integer value of 1 in memory since enumerators start with 0 and increment by 1.

Step-by-step explanation:

In the declaration enum Tree { OAK, MAPLE, PINE }, enumerators are assigned integer values starting from 0, by default, and incrementing by 1 for each subsequent enumerator unless specified otherwise. OAK would be assigned a value of 0, MAPLE would follow with a value of 1, and PINE would be assigned a value of 2. Therefore, in memory, the value will the MAPLE enumerator be stored as is B) 1.

User Hopeful Llama
by
8.7k points