✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Vali õige väide.
InputStream sisse = new FileInputStream("fail.txt");
OutputStream välja = new FileOutputStream("koopia.txt");
int c;
while ((c = sisse.read()) != -1) {
välja.write(c);
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!