What type of data is suitable for storage in ViewState?
Explanation
ViewState is designed to preserve page and control values between postbacks by storing data in a hidden field. However, it can only store objects that are serializable, ensuring the data can be converted into a format suitable for storage and retrieval. Therefore, only serializable objects can be stored in ViewState.