Multiple choice

________ Method returns SDCard location.

  1. Environment.getExternalStoragePath()

  2. Environment.getExternalStorageState()

  3. Environment.getExternalStorageDirectory()

  4. None of above

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

Environment.getExternalStorageDirectory() returns the File object representing the primary external storage directory. getExternalStorageState() returns storage state (mounted/shared/etc), and getExternalStoragePath() is not a standard Android API.