If text is a pointer of class Stringthen what is meant by the-03018
If text is a pointer of class Stringthen what is meant by the following statement? text = new String [5];
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Lecture No.38 - Quiz No.1.
If text is a pointer of class Stringthen what is meant by the following statement? text = new String [5];
Creates an array of 5 string objects statically
creates an array of 5 string objects dynamically
Creates an array of pointers to string
Creates a string Object