Which Is The Correct Syntax To Delete An Array Of Objects #1271
Which is the correct syntax to delete an array of objects?
This multiple choice question (MCQ) is related to the book/course
gs gs111 OOP Object Oriented Programming Java.
It can also be found in
gs gs111 Memory Allocation & Scope of Variable - OOPs MCQ: Delete Operator - Quiz No.2.
Which is the correct syntax to delete an array of objects?
delete [] objectName;
delete * objectName;
objectName[] delete;
delete objectName[];