Multiple choice technology

Name the blackberry API(Application Programming Interface) to be included in case a bit map image to be included in the application

  1. import net.rim.device.api.system.Bitmap;

  2. import net.rim.device.api.ui.container.*;

  3. import net.rim.device.api.ui.*;

  4. import net.rim.device.api.imagefile;

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

When working with bitmap images in BlackBerry Java applications, you need to import the Bitmap class from the net.rim.device.api.system package. This is the correct API that provides bitmap image functionality. The other options import UI containers, general UI components, or a non-existent package (net.rim.device.api.imagefile doesn't exist in standard BlackBerry API).