What is "delete" in java?
-
a Keyword
-
a method
-
a special identifier
-
none
D
Correct answer
Explanation
'delete' is not a keyword in Java, unlike in C++ where it is used for memory deallocation. Java does not expose manual memory management through keywords - it uses automatic garbage collection instead. 'delete' has no special meaning in Java syntax or standard libraries.