91.3k views
3 votes
You can assign _________ to a variable of Object[] type.

(choose more than one)

A. new char[100]
B. new int[100]
C. new double[100]
D. new String[100]
E. new .Date[100]

User Jokerdino
by
7.9k points

1 Answer

2 votes

Final answer:

You can assign new int[100], new double[100], new String[100], and new .Date[100] to a variable of Object[] type.

Step-by-step explanation:

You can assign new int[100], new double[100], new String[100], and new .Date[100] to a variable of Object[] type.

User Wreigh
by
8.3k points