MCQOPTIONS
Saved Bookmarks
| 1. |
Which object will be created first? class student { int marks; }; student s1, s2, s3; |
| A. | S1 then s2 then s3 |
| B. | S3 then s2 then s1 |
| C. | S2 then s3 then s1 |
| D. | All are created at same time |
| Answer» B. S3 then s2 then s1 | |