Development 12 Apr 2018
Completed setting up the layout of Result Page.
Result Page
So the Home Button is hooked up, and it will bring you to the home page with the full list of articles you have. ReviewPaper Button is still dud, because development priority goes to score tabulation. In the future will probably add Statistics in the area below "Difficulty: 15%".
Statistics maybe Like:
- Length of Article
- Number of total characters in Article
- Number of Tested Article
- ? Time Taken to complete the paper ?
Well from here to make it more fun, i'll probably do some research to define what's actually hard for an average Human Brain (probably length of article to memorize, versus number of chars tested), and then give the user a ranking, like "Memory Master" or "Forgetful Goldfish", maybe "Memory Flash" (complete long article in short amount of time).
But for now, again priority is to come up with an algorithm for tabulating score.
Things to do:
1. Figure out a good day to determine score
- Probably comparison of original alphabet to user's alphabet in sequential order.
- Need to think of a way to keep the postion index of the generated blanko. This position will be used to identify where to find the user's answer in place of blanko.
- Position index should only keep track of blanko position relative to only alphanumeric (to avoid inaccurate answer comparison due to new line, or trailing spaces invisible to naked eye).
| Blank # | 1 | 2 | 3 | ... | |
|---|---|---|---|---|---|
| Correct Ans: | A | S | 3 | ... | |
| Your Answer: | A | ? | 3 | ... | |
| Score: | 1 | 0 | 1 | ... | Total Score: 2/3 (66%) |



Comments
Post a Comment