A.
try { OutputStream out = new FileOutputStream ("hello.txt"); } catch(IOException e){}
B.
try { OutputStream out = new FileOutputStream ("hello.txt",false); } catch(IOException e){}
C.
try { OutputStream out = new OutputStream ("hello.txt",true); } catch(IOException e){}
D.
try { OutputStream out = new FileOutputStream ("hello.txt",true); } catch(IOException e){}