Welcome to your Free Java 5 Minutes Test
public class DataObjectWrapper
{
  private final Object obj;
  public DataObjectWrapper(Object pObj){ obj = pObj; }
  public Object getObject() { return obj; }
}
Select 1 option(s)
Note: Although identifying module dependency is not explicitly mentioned in the exam objectives, we have seen questions on the exam that require you to know about this.
public class TestClass
 public static void main(String[] args) throws IOException {
      final Reader reader = new FileReader("aaa.a"); //1
      try(reader){
        reader.read(); //2
     }finally{
        reader.read(); //3
     }
     reader.read(); //4
  }
Assuming that the fle named aaa.a does not exist, what will be the outcome?
Select 2 option(s)
class Outer
  private void Outer() { }
  protected class Inner
  {
Time's up
Time is Up!