Hello,
I need to load in a file that has a question and four possible answers. I need to mark one of the answers as being the correct one. I could even do that with placing a * at the front of the answer and parse it out when displaying it. There will be 100 - 200 of these in one file. It will be downloaded from my server to the app.
When is the best way to have these in a file to read them? Should I just put them all on one line with a delimited character to split them as?
One other thing I need to do is I need to make some of these questions so I can go back and study just those. How hard is it to mark the lines in the file and save them again? Or is there a better way?
Thanks!
Warren