Considerando a classe Exame6 em linguagem Java, pode-se afirmar que ela:
import java.util.*;
public class Exame6 {
public static void main(String[] args) {
ArrayList<String> a = new ArrayList<String>();
TreeMap<Integer,String> t = new TreeMap<Integer,String>();
Hashtable<Integer,String> h= new Hashtable<Integer,String>();
System.out.print((a instanceof Collection)+",");
System.out.print((t instanceof Collection)+",");
System.out.print(h instanceof Dictionary);
}
}