✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Find the output:
import java.util.*;
public class Main { public static void main(String[] args) { List<Integer> list = new ArrayList<>(); List<? extends Number> obj = list;
obj.add(100); System.out.println(obj); }}