Question: Fill in the blank with the correct annotation usage that allows the code to compile without any warnings. A. value=ignoreAll B. value=deprecation,unchecked C. unchecked,deprecation D.
Fill in the blank with the correct annotation usage that allows the code to compile without any warnings.

A. value=ignoreAll
B. value="deprecation","unchecked"
C. "unchecked","deprecation"
D. {"deprecation","unchecked"}
E. "deprecation"
F. None of the above.
@Deprecated (since="5.0") public class Project Planner { Project Planner create (T t) { return this; } } @SuppressWarnings ( class SystemPlanner { Project Planner planner = new Project Planner ().create("TPS"); }
Step by Step Solution
3.39 Rating (161 Votes )
There are 3 Steps involved in it
The SuppressWarnings annotation is used in Java to suppress specified compiler wa... View full answer
Get step-by-step solutions from verified subject matter experts
