Which of the following can fill in the blank to make the code compile?
public class News<___> {}
C.
When declaring a class that uses generics, you must specify a name for the formal type parameter.
Java uses the standard rules for naming a variable or class.
A question mark is not allowed in a variable name, making I incorrect.
While it is common practice to use a single uppercase letter for the type parameter, this is not required.
It isn't a good idea to use existing class names.
However, this is allowed, and Option C is correct.