Multiple choice

getExternalStorageDirectory()method returns sdcard location that

  1. is same for all devices

  2. may vary for different devices

  3. is Mnt/sdcard

  4. None of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The external storage directory path varies across devices - different manufacturers use different mount points (e.g., /mnt/sdcard, /sdcard, /storage/emulated/0). Developers should never hardcode paths and should always use the Environment.getExternalStorageDirectory() API or the Storage Access Framework for compatibility.