What is the name of the class used by Intent to store additional information?
What is the name of the class used by Intent to store additional information?
The class used by Intent to store additional information is called Bundle. Bundle is a mapping from String keys to various Parcelable values and is commonly used in Android to pass data between activities using Intents.
C. Bundle