MCQOPTIONS
Saved Bookmarks
| 1. |
What does the following code imply ?csharp abc;abc = new charp(); |
| A. | Object creation on class csharp |
| B. | Create an object of type csharp on heap or on stack depending on the size of object |
| C. | create a reference c on csharp and an object of type csharp on heap |
| D. | create an object of type csharp on stack |
| Answer» D. create an object of type csharp on stack | |