AND-401 Exam QuestionsBrowse all questions from this exam

AND-401 Exam - Question 88


Which of these is the incorrect method for an Application to save local data?

Show Answer
Correct Answer: D

Save in the hash table file using the Dictionary class is incorrect because the Dictionary class does not provide any built-in methods for persistent storage of key-value pairs. The other options are valid methods for saving local data in an Android application: using PreferencesActivity to save preferences in an XML file, saving files directly in the local file system, and using SQLite for database storage.

Discussion

1 comment
Sign in to comment
MmadiOption: D
Dec 31, 2022

D. Save in the hash table file using the Dictionary class.