Question: 6
(Choose 2 answers)
Which of the following is a valid way to declare an enumeration with explicit values in C++?
A. enum Status {Pending = 1, Approved = 2, Rejected = 3};
B. enum Status { Pending = "Pending", Approved = "Approved", Rejected = "Rejected" };
C. enum Status { Pending, Approved, Rejected = 3};
D. All of the others