Given:
final class Folder { //line n1
//line n2
public void open () {
System.out.print("Open");
}
}
public class Test {
public static void main (String [] args) throws Exception { try (Folder f = new Folder()) { f.open();
}
}
}
Open Close?
Which two modifications enable the code to print
line n1 with:
Innovation
Highly Voted 4 years, 6 months agoasdfjhfgjuaDCV
Most Recent 4 months, 1 week agoasdfjhfgjuaDCV
4 months, 1 week agosteefaand
5 months, 1 week agoiSnover
5 months, 1 week agoM_Jawad
4 years, 6 months agoadnano1234
4 years, 6 months ago