Which of the following classes is used by Intent to transfer data between different android components?
Which of the following classes is used by Intent to transfer data between different android components?
Bundle is used by Intent to transfer data between different Android components. A Bundle can contain various types of data, which can be retrieved by the receiving component. This class is designed to manage key-value pairs for communication between activities and other components, making it a versatile and common choice for data transfer in Android development.
B. Bundle