{{theTime}}

Search This Blog

Total Pageviews

What is the output of the HashSet

HashSet<String> set =
new HashSet<String>(Arrays.asList(new String[]{"Java","J2EE",null})) ;
 
Iterator<String> setInterator = set.iterator() ;
while(setInterator.hasNext()){
       System.out.println(setInterator.next()) ;
}
 
Answers:
 
A) NullPointerException
B) HashSet doesn't allow null
C) Runtime Exception
D) Java
    J2EE

No comments:

LLMs for bytecode verification in the Java world

Using an LLM for bytecode verification isn’t about replacing the JVM’s strict verifier—it’s about augmenting it with semantic understandin...