Question
public class BoxDemo
{
public static <U> void addBox(U u, java.util.List<Box<U>> boxes)
{
Box<U> box = new Box<>();
box.set(u);
boxes.add(box);
}
public static <U> void outputBoxes(java.util.List<Box<U>> boxes)
{
int counter = 0;
for (Box<U> box: boxes)
{
U boxContents = box.get();
System.out.println("Box #" + counter + " contains [" + boxContents.toString() + "]");
counter++;
}
}
public static void main(String[] args)
{
java.util.ArrayList<Box<Integer>> listOfIntegerBoxes = new java.util.ArrayList<>();
BoxDemo.<Integer>addBox(Integer.valueOf(10), listOfIntegerBoxes);
BoxDemo.outputBoxes(listOfIntegerBoxes);
}
}
a.
10
b.
Box #0 [10].
c.
Box contains [10].
d.
Box #0 contains [10].
Posted under Java Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this program?
Similar Questions
Discover Related MCQs
Q. A java interface can contain _______.
View solution
Q. Which of the following is a correct interface?
View solution
Q. Which of the following classes directly implement Set interface?
View solution
Q. Which is the correct way to inherit and implement the interface?
View solution
Q. Which of the following is true about methods in an interface in java?
View solution
Q. Can "abstract" keyword be used with constructor, Initialization Block, Instance Initialization and Static Initialization Block.
View solution
Q. Package in Java is a mechanism to encapsulate a ______________.
View solution
Q. Package names and directory structure are closely related.
View solution
Q. An _______________ statement can be used to access the classes and interface of a different package from the current package.
View solution
Q. Which of the following packages is used to includes classes to create user interface like Button and Checkbox?
View solution
Q. Which of the following packages is used to includes utility classes like Calendar, Collection, Date?
View solution
Q. Which of the following is the correct way of importing an entire package "pkg"?
View solution
Q. Which of the following is false statement about package in java?
View solution
Q. Packages that are inside another package are the _________
View solution
Q. An interface in Java is like a 100% ____.
View solution
Q. A Java Interface is not considered a class. State TRUE or FALSE.
View solution
Q. Choose the correct syntax below for defining an Interface in Java.
View solution
Q. Choose a correct statement about Java Interfaces?
View solution
Q. A Java Class inheritsConstants and Methods of an Interface using ____ keyword.
View solution
Q. All Interface variables are ___ by default in Java.
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Java Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!