Hey. I need to write an application where questions with multiple-choice questions will be asked (tests, in short). It just puzzled me a bit, but where is the best place to store the answers and the questions themselves? Create a file, use SQLlite, or even in Strinq.xml (although it seems that this is not the most desirable).
If you use SQLlite, then tell me, let's say, I will do db.execSQL(yourSql)
and fill the database with my questions, but where will I get these questions from to fill them in the database. Where to store them initially in this case. (There will be no internet connection) :) Is it possible that when downloading the application, a dump is downloaded, if so, where you can read about it.
Please advise, based on your experience.