Motto: Introduce first Spring framework question!
Q1: In which Java version, text blocks are available as preview feature?
- Java 10
- Java 11
- Java 12
- Java 13
Q2: What's the output printed to console if you are using Java 11?
public static void main(String[] args) {
Map<String, String> myMap = Map.of("key", "value");
Map<String, String> myCopyMap = Map.copyOf(myMap);
System.out.println(myCopyMap == myMap);
}