Vidyalelo
C++ Programming · Q115

Classes and Objects in C++

Programming · C++ Programming · question 115

Q115

What will be the output of the following C++ code? #include using namespace std; class Box public : double length; double breadth; double height; ; int main( ) Box Box1; double volume; Box1.height = 5; Box1.length = 6; Box1.breadth = 7.1; volume = Box1.height * Box1.length * Box1.breadth; cout << "Volume of Box1 : " << volume <<endl; return 0;

A.
210
B.
213
Answer
C.
215
D.
217

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board