Sri Aurobindo Public School, Baddi CLASS XII: Test-1 Topic : Class and Objects/Constructor and destructor 1. Write the output of the following C++ program code 3 Note : Assume all required header files are already being included in the program. class Eval { Char Level; int Point; public: Eval(){Level=’E’;Point=0;} void Sink(int L) { Level- =L; } void Float(int L) { Level+=L ; Point++; } void Show() { cout<<Level<<”#”<<Point<<endl; ...