What does the following line of code do?
FileOutputStream fOut = openFileOutput(“MyFile.txt”, MODE_WORLD_READABLE);

A.
The file MyFile.txt will be created in the /data/<application-path>/ files/ directory.
B.
The file MyFile.txt will be created in the /data/data/<application-path>/ files/ directory.
C.
None are correct
D.
The file MyFile.txt will be created in the /data/data/<application-path>/ directory.
I choose B
I have the same idea. B