ANSWER:
D: The New keyword allows the VB to bind x to the stdFont object using early binding. Both A and B are invalid syntax because the Form and Control object cannot be early bound. Use the specific type of object if you want to use early binding in calls like these, for example, Dim X as New CheckBox, or Dim X as New MyForm1.

Answers in Depth...