Which of the following is not correct when executing the following line of code?
FileOutputStream fOut = openFileOutput(“MyFile.txt”, MODE_WORLD_READABLE);

A.
File “MyFile.txt” is created in internal memory of application.
B.
File created by this code is readable by other applications.
C.
File “MyFile.txt” is created in external memory.
D.
File “MyFile.txt” is created in internal memory.
C
I agree with the answer. C