Ikm Java 8 Test Updated Direct

B. The key is String.valueOf(s.length()) , which yields strings "1" , "2" , "3" . Then mapping(String::length) takes each string ("A", "BB", "CCC") and gets its length (1,2,3), collecting into a list. Question 2 (Time API) What is the result of:

Map<String, List<Integer>> map = Stream.of("A", "BB", "CCC") .collect(Collectors.groupingBy(s -> String.valueOf(s.length()), Collectors.mapping(String::length, Collectors.toList()))); System.out.println(map); What is the output? A) 1=[1], 2=[2], 3=[3] B) "1"=[1], "2"=[2], "3"=[3] C) 1=[1], 2=[2] D) Compilation error ikm java 8 test updated

List<String> list = Arrays.asList("a", "b"); Stream<String> stream = list.stream().filter(s -> s.length() > 5); // No terminal operation The updated test asks: What is the state of the stream after line 2? Many incorrectly think filtering occurs immediately. It does not. The pipeline is not executed until a terminal operation like count() or collect() is invoked. A tricky question might present: Question 2 (Time API) What is the result

If you are a Java developer, software engineer, or IT consultant, you have likely encountered the IKM (International Knowledge Measurement) assessment. Specifically, the IKM Java 8 test has long been a benchmark for employers to gauge your proficiency in one of the most enduring versions of Java—Java 8. It does not

Optional<String> opt = Optional.ofNullable(null); System.out.println(opt.get()); Answer: Throws NoSuchElementException because ofNullable(null) returns Optional.empty() , and calling get() on empty throws. The trap is thinking ofNullable magically avoids the exception—it only avoids NullPointerException during creation. A typical new question:

| Topic Area | Weight in Old Test | Weight in Updated Test | |------------|-------------------|------------------------| | Lambdas & Functional Interfaces | 15% | 22% | | Stream API (incl. collectors & parallel) | 12% | 18% | | java.time API | 5% | 12% | | Optional class | 8% | 9% | | Default & static methods in interfaces | 8% | 10% | | Concurrency (CompletableFuture basics) | 6% | 8% | | Collections & Generics | 18% | 10% | | Exception handling & try-with-resources | 6% | 5% | | Miscellaneous (NIO, reflection, annotations) | 22% | 6% |