Multiple choice technology operating systems

Find out the statement which is used to instantiate a media player and start the service?

  1. mp.initialize();

  2. mp.start();

  3. mp.do();

  4. mp.run();

  5. mp.process();

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

In Android, the MediaPlayer class uses the start() method to begin or resume playback of audio/video streams. The other listed options like initialize, do, run, or process are not standard methods of the Android MediaPlayer API for initiating media playback.