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.