MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class box { int width; int height; int length; int volume; box() { width = 5; height = 5; length = 6; } void volume() { volume = width*height*length; } } class constructor_output { public static void main(String args[]) { box obj = new box(); obj.volume(); System.out.println(obj.volume); } } |
| A. | 100 |
| B. | 150 |
| C. | 200 |
| D. | 250 |
| Answer» C. 200 | |