adplus-dvertising
frame-decoration

Question

Which of the following is an incorrect statement regarding the use of generics and parameterized types in Java?

a.

Generics provide type safety by shifting more type checking responsibilities to the compiler

b.

Generics and parameterized types eliminate the need for down casts when using Java Collections

c.

When designing your own collections class (say, a linked list), generics and parameterized types allow you to achieve type safety with just a single class definition as opposed to defining multiple classes

d.

All of the mentioned

Answer: (c).When designing your own collections class (say, a linked list), generics and parameterized types allow you to achieve type safety with just a single class definition as opposed to defining multiple classes

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following is an incorrect statement regarding the use of generics and parameterized types in Java?

Similar Questions

Discover Related MCQs

Q. Which of the following reference types cannot be generic?

Q. A java interface can contain _______.

Q. Which of the following is a correct interface?

Q. Which of the following classes directly implement Set interface?

Q. Which is the correct way to inherit and implement the interface?

Q. Which of the following is true about methods in an interface in java?

Q. Can "abstract" keyword be used with constructor, Initialization Block, Instance Initialization and Static Initialization Block.

Q. Package in Java is a mechanism to encapsulate a ______________.

Q. Package names and directory structure are closely related.

Q. An _______________ statement can be used to access the classes and interface of a different package from the current package.

Q. Which of the following packages is used to includes classes to create user interface like Button and Checkbox?

Q. Which of the following packages is used to includes utility classes like Calendar, Collection, Date?

Q. Which of the following is the correct way of importing an entire package "pkg"?

Q. Which of the following is false statement about package in java?

Q. Packages that are inside another package are the _________

Q. An interface in Java is like a 100% ____.

Q. A Java Interface is not considered a class. State TRUE or FALSE.

Q. Choose the correct syntax below for defining an Interface in Java.

Q. Choose a correct statement about Java Interfaces?

Q. A Java Class inheritsConstants and Methods of an Interface using ____ keyword.