✅ 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<Double> list = new ArrayList<>();list.add(4.4);List<? extends Number> obj = list;System.out.println(obj.get(0).getClass().getSimpleName());}}