Quiz Algo

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • empiresolutions
    New Member
    • Apr 2006
    • 162

    Quiz Algo

    I am building a app that creates quizzes. This is how it goes -

    - Create Quiz
    - Provide up to 10 different types of Quiz Results
    - Give up to 50 Questions
    - Each Question has up to 10 possible Answers.
    - Each Answer is assigned a Weighted value.... for each type of Quiz Result.
    - Weighted values are in the range of -6, 0, +6.
    - Each Quiz will also apply the same Weight range for if a M/F is taking and what of 6 age groups the taker is in..... for each type of Quiz Result.

    I have the app all built out except the algo to score the quiz. I'm not sure of the best way top tackle the algo. Does anyone have any suggestions or links to great articles? Thanks much.
  • empiresolutions
    New Member
    • Apr 2006
    • 162

    #2
    To clear up confusion i have put up the layout comps at . My hops is that you will see how it works better visually. Thanks again for all the help.

    Comment

    • aktar
      New Member
      • Jul 2006
      • 105

      #3
      This sound very interesting indeed.

      One thing I've noticed is that you have 13 (6 either side of zero plus the zero itself) weights for 10 possible answers.

      You may find it more easier if you had 10 weights for 10 answers.

      So the way I'd do it is:

      -get an average of all weights (from all answers)
      -anything below -3 is a robot
      -anyting above +2 is an alien
      -everything else is a human (range: -2, -1, 0, +1). This is the middleground, ie the 'norm'

      Hope that helps

      Comment

      • empiresolutions
        New Member
        • Apr 2006
        • 162

        #4
        thanks for the insight i will add it into my stew.

        Comment

        Working...