Introduction
Brillium Assessment Builder offers multiple scoring methods for Multiple Select questions with partial credit. Each method has different characteristics and use cases, allowing you to choose the most appropriate scoring approach for your assessment needs. This article explains all four available scoring methods with detailed examples and recommendations for when to use each one.
Overview of Available Scoring Methods
Brillium provides four distinct partial scoring methods for Multiple Select questions:
- Classic Method - The traditional approach based on overall accuracy
- Proportional Scoring (Recommended) - Balances correct selections with penalty for incorrect choices
- Linear Penalty Model - Simple subtraction of incorrect from correct selections
- Weighted Penalty Model - Customizable penalty multiplier for high-stakes scenarios
Each method prevents "select all" strategies while providing fair partial credit for partially correct responses.
Method Selection Guidelines
| Assessment Type | Recommended Method | Rationale |
|---|---|---|
| General Knowledge | Classic or Proportional | Balanced approach for most scenarios |
| Professional Certification | Proportional or Weighted (k=1.5) | Rewards knowledge, penalizes guessing |
| Safety-Critical Training | Weighted (k=2+) | High penalty for incorrect assumptions |
| Basic Education | Classic or Linear | Simple, easy to understand |
| High-Stakes Exams | Weighted (k=1.5-2) | Maximum discrimination between knowledge levels |
Method 1: Classic Scoring (Default)
How It Works
The Classic method calculates the percentage of all answer choices that are handled correctly (both selected and unselected). This method scores the selections that are expected to be selected and the ones that are expected to be left unselected.
This can be viewed as measuring the percentage of all selections that match the expected state and can be thought of as matching the expected pattern. The system will determine the percentage of the total choices that match the expected selected or unselected state and then apply that percentage of question points as a value for the question.
Formula: (Number of Checkboxes Correct / Total Number of Checkboxes) × Question Point Value
Example Question
Question: "Which of the following are primary colors?" (Worth 10 points)
- A. Red ✓ (Correct - should be selected)
- B. Blue ✓ (Correct - should be selected)
- C. Orange ✗ (Incorrect - should not be selected)
- D. Yellow ✓ (Correct - should be selected)
- E. Green ✗ (Incorrect - should not be selected)
Scoring Examples
Example 1 - Sally's Response: Selected: A (Red), B (Blue), D (Yellow), E (Green)
- Analysis: 4 out of 5 choices handled correctly (missed Orange - should not select)
- Score: (4/5) × 10 = 80% (8 points)
Example 2 - John's Response: Selected: A (Red) only
- Analysis: 3 out of 5 choices handled correctly (A correct, correctly left C and E unselected gives partial credit, B and D were incorrectly left unselected)
- Score: (3/5) × 10 = 60% (6 points)
When to Use Classic Scoring
- General knowledge assessments
- When you want to reward both correct selections and correct omissions equally
- Traditional academic testing scenarios
Method 2: Proportional Scoring (Recommended)
How It Works
Proportional scoring balances the percentage of correct answers selected with a penalty based on incorrect selections, preventing "select all" strategies while fairly rewarding partial knowledge.
Proportional scoring grades questions by awarding points for correct selections while also deducting points for incorrect selections. This method prevents the strategy of selecting all answer choices with the aim of receiving at least some points for a question when the actual answer is unknown. This method provides a more accurate score and assessment of knowledge.
The final score for the question is a combination of the percentage of correct answer selections and the penalty for any incorrect answers selected. The result of the calculation determines the percentage of total points awarded for the question.
Formula: Score = (Correct Selections / Total Correct) × (1 - Incorrect Selections / Total Incorrect)
Example Question
Question: "Which of the following are security vulnerabilities?" (Worth 10 points)
- A. SQL Injection ✓ (Correct)
- B. Cross-site Scripting ✓ (Correct)
- C. Using HTTPS ✗ (Incorrect - this is secure)
- D. Input Validation ✗ (Incorrect - this prevents vulnerabilities)
- E. Buffer Overflow ✓ (Correct)
Total Correct = 3, Total Incorrect = 2
Scoring Examples
Perfect Response: Selected: A, B, E
- Correct Selections: 3, Incorrect Selections: 0
- Score: (3/3) × (1 - 0/2) = 1.0 × 100.0 = 100% (1 → 10 points)
Good Partial Knowledge: Selected: A, B
- Correct Selections: 2, Incorrect Selections: 0
- Score: (2/3) × (1 - 0/2) = 0.67 × 100.0 = 67% (.67 → 7 points)
Mixed Response: Selected: A, B, C
- Correct Selections: 2, Incorrect Selections: 1
- Score: (2/3) × (1 - 1/2) = 0.33 × 100.0 = 33% (.33 → 3 points)
Special Case - All Correct Answers, No Incorrect Options
When a question has no incorrect options (all choices are correct): Formula simplifies to: Score = Correct Selections / Total Correct
Example: Question with choices A, B, C, D (all correct)
- Select A, B, C: Score = 3/4 = 75%
When to Use Proportional Scoring
- Most assessment scenarios (recommended default)
- When you want balanced scoring that rewards knowledge while penalizing guessing
- Professional certification exams
- Situations where partial credit should reflect true understanding
Method 3: Linear Penalty Model
How It Works
The Linear Penalty Model uses simple subtraction: correct selections minus incorrect selections, divided by total correct answers.
Formula: Score = (Correct Selections - Incorrect Selections) / Total Correct
Example Using Same Security Question
Total Correct = 3 (A, B, E), Total Incorrect = 2 (C, D)
Scoring Examples
Perfect Response: Selected: A, B, E
- Score: (3 - 0) / 3 = 1 x 100 = 100% (10 → 10 points)
Good Partial Knowledge: Selected: A, B
- Score: (2 - 0) / 3 = .67 * 100 = 67% (6.7 → 7 points)
Mixed Response: Selected: A, B, C, D
- Score: (2 - 2) / 3 = 0 * 100 = 0% (0 → 0 points)
Select All Strategy: Selected: A, B, C, D, E
- Score: (3 - 2) / 3 = .33 * 100 = 33% (3.3 → 3 points)
When to Use Linear Penalty Model
- When you want straightforward, easy-to-understand scoring
- Assessments where incorrect selections should be heavily penalized
- Training scenarios where precision is important
Method 4: Weighted Penalty Model
How It Works
The Weighted Penalty Model allows customization of the penalty for incorrect selections using a multiplier (k), providing maximum control over scoring strictness.
Formula: Score = (Correct Selections - k × Incorrect Selections) / Total Correct
Where k is the penalty multiplier (typically 1-2, can be higher for critical assessments)
Detailed Example: Web Security Assessment
Question: "Select all programming practices that indicate security vulnerabilities in web applications."
Answer Choices:
- A. Using
eval()with user input ✓ (Correct) - B. Hard-coding API keys in source code ✓ (Correct)
- C. Using HTTPS for all connections ✗ (Incorrect - this is good practice)
- D. Implementing input validation ✗ (Incorrect - this prevents vulnerabilities)
- E. SQL injection prevention with prepared statements ✗ (Incorrect - this is secure)
- F. Storing passwords in plain text ✓ (Correct)
- G. Using outdated libraries with known CVEs ✓ (Correct)
Correct answers: A, B, F, G (4 total)
Incorrect answers: C, D, E (3 total)
Penalty multiplier (k): 2 (high penalty for false security identifications)
Scoring Examples
Respondent 1 - Expert Response Selected: A, B, F, G
- Correct selections: 4, Incorrect selections: 0
- Score: (4 - 2×0) / 4 = 1 * 100 = 100%
Respondent 2 - Good Understanding Selected: A, B, F
- Correct selections: 3, Incorrect selections: 0
- Score: (3 - 2×0) / 4 = .75 * 100 = 75%
Respondent 3 - Overcautious Selected: A, B, C, F, G
- Correct selections: 4, Incorrect selections: 1
- Score: (4 - 2×1) / 4 = .5 * 100 = 50%
Respondent 4 - Poor Discrimination Selected: A, B, C, D, F, G
- Correct selections: 4, Incorrect selections: 2
- Score: (4 - 2×2) / 4 = 0 * 100 = 0%
Respondent 5 - Select All Strategy Selected: A, B, C, D, E, F, G
- Correct selections: 4, Incorrect selections: 3
- Score: (4 - 2×3) / 4 = -2/4 = 0% (floor applied - negative scores become 0)
When to Use Weighted Penalty Model
- High-stakes professional certifications
- Safety-critical assessments (medical, aviation, security)
- When false positives are more problematic than false negatives
- Assessments requiring high precision and discrimination
Important Scoring Notes
Point Rounding
Brillium does not award fractional points. All scores are rounded to whole numbers using standard rounding rules:
- < 0.5 rounds down
- ≥ 0.5 rounds up
Example: For a 2-point question with 67% score:
- 67% × 2 = 1.34 points → rounds to 1 point
Minimum Score Floor
All methods apply a minimum score of 0%. Negative calculations are set to 0% to prevent penalty scores below zero.
Preventing Gaming
All four methods are designed to prevent "select all" strategies while fairly rewarding partial knowledge. The choice of method depends on your specific assessment goals and the level of precision required.
Overall Guidelines
Each scoring method serves different assessment needs. The Proportional Scoring method is recommended for most use cases as it provides balanced partial credit while preventing gaming strategies. For specialized requirements, the Weighted Penalty Model offers maximum flexibility with customizable penalty multipliers.
Choose the method that best aligns with your assessment objectives and the consequences of incorrect responses in your subject domain.
Comments
0 comments
Article is closed for comments.