Question: You want to allow users to take pictures in your app. Which is _not_ an advantage of creating an appropriate `intent`, instead of requesting the camera permission directly?

  1. Users can select their favorite photo apps to take pictures.
  2. You do not have to make a permission request in your app to take a picture.
  3. You have full control over the user experience. The app that handles the camera `intent` will respect your design choices.
  4. You do not have to design the UI. The app that handles the camera `intent` will provide the UI.

Answer: The correct answer of the above question is Option C:You have full control over the user experience. The app that handles the camera `intent` will respect your design choices.