Question : Which of the following is NOT true about the SharedPreferences interface?
1. The data it saves is persistent even if application is killed.
2. It only saves primitive data in key-value pairs.
3. Modifications to preferences saved should go through class SharedPreferences.Editor
4. It can save any data type in key-value pairs
Correct Answer : Get Lastest Questions and Answer : Explanation: If you have a relatively small collection of key-values that you'd like to save, you should use the SharedPreferences APIs. A SharedPreferences object points to a file containing key-value pairs and provides simple methods to read and write them. Each SharedPreferences file is managed by the framework and can be private or shared. The SharedPreferences class provides a general framework that allows you to save and retrieve persistent key-value pairs of primitive data types. You can use SharedPreferences to save any primitive data: booleans, floats, ints, longs, and strings.