Engineering Full Stack Apps with Java and JavaScript
Which of the given statements are correct for a method that overrides the following method:
public Set getSet(int a) {...}
Select 3 options
A. Its return type must be declared as Set.
B. It may return HashSet.
C. It can declare any Exception in throws clause
D. It can declare any RuntimeException in throws clause.
E. It can be abstract.