Cho biết số byte mà đoạn chương trình sau ghi ra tập tin temp. txt import java.io. * ; public class TestIOApp { public static void main(String args[]) throws IOException { FileOutp...

Câu hỏi :

Cho biết số byte mà đoạn chương trình sau ghi ra tập tin temp. txt
import java.io. * ;
public class TestIOApp {
public static void main(String args[]) throws IOException {
FileOutputStream outStream = new FileOutputStream("temp.txt");
String s = "test";
for (int i = 0; i
outStream.write(s.charAt(i));
outStream.close();
}
}

A. 2 bytes

B. 4 bytes.

C. 8 bytes

D. 16 bytes

* Đáp án

* Hướng dẫn giải

B là đáp án đúng

Copyright © 2021 HOCTAP247