What Will Be The Output Of The Following Java Programp Pre #1187
What will be the output of the following Java program?</p> <pre><code class="language-java" line="1"> import java.util.*; class Output { public static void addNumbers(List<? super Integer> list) { for (int i = 1; i <= 10; i++) { list.add(i); } } public static void main(String args[]) { List<Double> ld = Arrays.asList(); addnumbers(10.4); System.out.println("getList(2)"); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Generics - Java Restrictions on Generics - Quiz No.1.