What does the following statement do? String[] widget;
A. It declares an array of references to widget objects named String.
B. It creates a String object named widget.
C. It creates an array of length zero named widget.
D. It declares a variable widget which may in the future hold a reference to an array of references to String objects but is initialized to null.