Question: When should you store files in the `/assets` directory?

  1. when you need access to the original file names and file hierarchy [(Reference)](https://medium.com/mobile-app-development-publication/assets-or-resource-raw-folder-of-android-5bdc042570e0)
  2. when you need access to the file with its `resource ID`, like `R.assets.filename`
  3. when you have XML files that define tween animations
  4. when you need to access the file in its raw form using `Resources.openRawResource()`

Answer: The correct answer of the above question is Option A:when you need access to the original file names and file hierarchy [(Reference)](https://medium.com/mobile-app-development-publication/assets-or-resource-raw-folder-of-android-5bdc042570e0)