Assume s is "ABCABC", the method __________ returns an array of characters.
a. toChars(s)
b. s.toCharArray()
c. String.toChars()
d. String.toCharArray()
e. s.toChars()
b. s.toCharArray()
Computer Science & Information Technology
You might also like to view...
You must create ____ before any of the other database objects.
A. reports B. queries C. data access pages D. tables
Computer Science & Information Technology
Suppose class Child is derived from class Parent that was in turn derived from class GrandParent. When we destroy an object of class Child, three destructors are called: i) Child, ii) Parent, iii )GrandParent.. What is the order?
a) Child, Parent, GrandParent b) Parent, GrandParent, Child c) GrandParent, Child, Parent d) GrandParent, Parent, Child e) GrandParent, Child, Parent
Computer Science & Information Technology