Q1
Single choice
Given the MIDlet code:
12. File f = new File("myFile.txt");
13. FileOutputStream ds = new FileOutputStream(f);
14. OutputStreamWriter os = new OutputStreamWriter(ds);
15. BufferedWriter buf = new BufferedWriter(os);
16. buf.write('c');
What is the result?