Evaluator Report

Anushri

Roll: 2423509
File: Anushri-2423509-PracticeTest.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Aryan Chhabra

Roll: 2523512
File: Aryan Chhabra.ipynb
Total: 23.0/24 (95.83%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Kabeer

Roll: 2423577
File: Kabeer.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Anushri

Roll: 2423509
File: Lohitakksh Mukherji (2423531) _ Practice Test.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Anushri

Roll: 2423509
File: Lohitakksh-2423531-PracticeTest .ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

shreya burli

Roll: 2423557
File: Mock test.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: Mrunmayi Rao_2423536_Class Participation.ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Mukund Khetan

Roll: 2423537
File: Mukund khetan_2423537.ipynb
Total: 23.0/24 (95.83%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: Nikhil 2423539.ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Pranav V

Roll: 2423542
File: PRACTICE EXAM - PYTHON.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Jiya Kadate

Roll: 2423524
File: PYTHON MOCK TEST-2423524.ipynb
Total: 21.0/24 (87.5%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_number' is not defined
assert check_number(-3) == 'Negative'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_number' is not defined
assert check_number(0) == 'Zero'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_number' is not defined

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: PratikshaPrabhu_2423544 .ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Sesha Sai Sriya.K

Roll: 2423527
File: Python Practice Test 1 .ipynb
Total: 22.0/24 (91.67%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Samanvitha P

Roll: 2423552
File: Samanvitha P 2423552.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Trishikha Vijay

Roll: 2423570
File: Trishikha Vijay 2423570.ipynb
Total: 12.0/24 (50.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert sum_1_to_n(10) == 55failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: Vehhaan_2423572.ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

RASHIMA MALHOTRA

Roll: 2423036
File: Vivan 23(1).ipynb
Total: 18.0/24 (75.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: Yashvita Yenuganti 2423574.ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Yuktha Jain SB

Roll: 2423576
File: Yuktha jain 2423576.ipynb
Total: 22.0/24 (91.67%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Isha Ivy

Roll: 2423521
File: isha 2423521.ipynb
Total: 22.0/24 (91.67%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: mathew python.ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

shreya mehta

Roll: 2423558
File: notebook shreya.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: notebooks_Intro (1) (1).ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

student name

Roll: student roll number
File: notebooks_Intro (1).ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

student name

Roll: student roll number
File: notebooks_Intro (2).ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Rintu Thomas

Roll: 2423549
File: practice test.ipynb
Total: 21.0/24 (87.5%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Sesha Sai Sriya.K

Roll: 2423527
File: python practice test 1.ipynb
Total: 22.0/24 (91.67%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Sharan Sunil Krishnaa

Roll: 2423554
File: sharan_2423554(1).ipynb
Total: 14.0/24 (58.33%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined
assert square_number(0) == 0failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'sum_1_to_n' is not defined
assert sum_1_to_n(10) == 55failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'sum_1_to_n' is not defined

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'squares_1_to_n' is not defined

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: shreyans_2423582.ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Teresa George

Roll: 2423568
File: student_notebook (1) (1) (1) (1).ipynb
Total: 23.0/24 (95.83%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Hrisikesh Mondal

Roll: 2423520
File: student_notebook (1) (1) (1).ipynb
Total: 21.0/24 (87.5%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Daksh Pakkal

Roll: 2423515
File: student_notebook (1) (1)(1).ipynb
Total: 20.0/24 (83.33%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Kunal Gaur

Roll: 2423530
File: student_notebook (1) (1).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Pranav Kumar

Roll: 2423525
File: student_notebook (1)(1).ipynb
Total: 7.0/24 (29.17%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert square_number(0) == 0failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert sum_1_to_n(10) == 55failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
TypeError: type NoneType doesn't define __round__ method
assert average_of_three(3, 3, 3) == 3failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert average_of_three(10, 0, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

RESHU JAIN

Roll: 2423548
File: student_notebook (1)(2).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Trishikha Vijay

Roll: 2423570
File: student_notebook (1)(3).ipynb
Total: 12.0/24 (50.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert sum_1_to_n(10) == 55failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Prarthana SB

Roll: 2423543
File: student_notebook (1)(4).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Harsh Raj

Roll: 2423579
File: student_notebook (1)(5).ipynb
Total: 8.0/24 (33.33%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'sum_1_to_n' is not defined
assert sum_1_to_n(10) == 55failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'sum_1_to_n' is not defined

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'squares_1_to_n' is not defined

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined
assert average_of_three(3, 3, 3) == 3failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined
assert average_of_three(10, 0, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined

shreya burli

Roll: 2423557
File: student_notebook (1)(6).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

vasu jindal

Roll: 2423571
File: student_notebook (1)(7).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Anshala Sinha

Roll: 2423508
File: student_notebook (1)(8).ipynb
Total: 20.0/24 (83.33%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'squares_1_to_n' is not defined

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Isha Ivy

Roll: 2423521
File: student_notebook (1).ipynb
Total: 22.0/24 (91.67%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

ISHITA

Roll: 2423523
File: student_notebook (2) (1).ipynb
Total: 21.0/24 (87.5%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

SRISHTI

Roll: 2423561
File: student_notebook (2) (2).ipynb
Total: 21.0/24 (87.5%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Vishnu Tunga

Roll: 2423573
File: student_notebook (2).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Akshat Mishra

Roll: 2423504
File: student_notebook (3).ipynb
Total: 22.0/24 (91.67%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Tanishq Bhojwani

Roll: 2423567
File: student_notebook 2.ipynb
Total: 19.0/24 (79.17%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Samanvitha P

Roll: 2423552
File: student_notebook 2423552(1).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Surya Madhavan

Roll: 2423563
File: student_notebook 2423563.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

vasu jindal

Roll: 2423571
File: student_notebook krits (1).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

savi kasliwal

Roll: 2423584
File: student_notebook savi-2(1).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

savi kasliwal

Roll: 2423584
File: student_notebook savi-2.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Tamanna Gupta

Roll: 2423565
File: student_notebook(1)(1).ipynb
Total: 22.0/24 (91.67%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Chinmay kataria

Roll: 2423514
File: student_notebook(1).ipynb
Total: 19.0/24 (79.17%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Garvit Khatri

Roll: 2423518
File: student_notebook(2).ipynb
Total: 19.0/24 (79.17%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Ishika Khandelwal

Roll: 2423522
File: student_notebook(3).ipynb
Total: 21.0/24 (87.5%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined
assert even_or_odd(3) == 'Odd'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_or_odd' is not defined

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

student name

Roll: student roll number
File: student_notebook(4).ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

student name

Roll: student roll number
File: student_notebook(5).ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Prerak

Roll: 2423545
File: student_notebook-2(1).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

nandini maheshwari

Roll: 2423538
File: student_notebook-2(2).ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Prerak

Roll: 2423545
File: student_notebook-2.ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Manan Jain

Roll: 2423533
File: student_notebook-manan-2423533.ipynb
Total: 19.0/24 (79.17%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined
assert square_number(0) == 0failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'squares_1_to_n' is not defined

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Parikshit Saraf

Roll: 2423541
File: student_notebook-parikshit-541.ipynb
Total: 14.0/24 (58.33%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined
assert square_number(0) == 0failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined
assert average_of_three(3, 3, 3) == 3failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined
assert average_of_three(10, 0, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined

Subaaishwariya BL

Roll: 2423562
File: student_notebook...ipynb
Total: 24.0/24 (100.0%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]passed1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]passed1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Tanishq Bhojwani

Roll: 2423567
File: student_notebook.ipynb
Total: 19.0/24 (79.17%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16passed1.0
assert square_number(0) == 0passed1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('PYTHON') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined
assert check_password('java') == 'Access Denied'failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'check_password' is not defined

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Arnav Jain

Roll: 2423511
File: student_notebook_Arnav_2423511.ipynb
Total: 19.0/24 (79.17%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined
assert square_number(0) == 0failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9passed1.0
assert larger_number(10, 3) == 10passed1.0
assert larger_number(5, 5) == 5passed1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'squares_1_to_n' is not defined

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33passed1.0
assert average_of_three(3, 3, 3) == 3passed1.0
assert average_of_three(10, 0, 5) == 5passed1.0

Yug Khandelwal

Roll: 2423575
File: student_notebook_yug_2423575.ipynb
Total: 14.0/24 (58.33%)

Question: check_number

+
Description: **Return:** A string such as `'Positive'`, `'Negative'`, or `'Zero'`
AssertionStatusScoreError
assert check_number(5) == 'Positive'passed1.0
assert check_number(-3) == 'Negative'passed1.0
assert check_number(0) == 'Zero'passed1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
AssertionStatusScoreError
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'numbers_1_to_n' is not defined

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
AssertionStatusScoreError
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'even_numbers_1_to_n' is not defined

Question: square_number

+
Description: **Example:** For input `4`, return `16`
AssertionStatusScoreError
assert square_number(4) == 16failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined
assert square_number(0) == 0failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'square_number' is not defined

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
AssertionStatusScoreError
assert check_password('python') == 'Access Granted'passed1.0
assert check_password('PYTHON') == 'Access Denied'passed1.0
assert check_password('java') == 'Access Denied'passed1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
AssertionStatusScoreError
assert larger_number(4, 9) == 9failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(10, 3) == 10failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined
assert larger_number(5, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'larger_number' is not defined

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
AssertionStatusScoreError
assert even_or_odd(2) == 'Even'passed1.0
assert even_or_odd(3) == 'Odd'passed1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
AssertionStatusScoreError
assert sum_1_to_n(5) == 15passed1.0
assert sum_1_to_n(10) == 55passed1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
AssertionStatusScoreError
assert squares_1_to_n(5) == [1, 4, 9, 16, 25]passed1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
AssertionStatusScoreError
assert count_letter('banana', 'a') == 3passed1.0
assert count_letter('apple', 'p') == 2passed1.0
assert count_letter('python', 'z') == 0passed1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
AssertionStatusScoreError
assert round(average_of_three(4, 8, 10), 2) == 7.33failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined
assert average_of_three(3, 3, 3) == 3failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined
assert average_of_three(10, 0, 5) == 5failed0.0
Traceback (most recent call last):
File "/app/src/instantgrade/comparison/comparison_service.py", line 44, in run_assertions
exec(compile(code, "<assertion>", "exec"), ns)
File "<assertion>", line 1, in <module>
NameError: name 'average_of_three' is not defined

student name

Roll: student roll number
File: surdeep_2423532.ipynb
Total: 0.0/24 (0.0%)

Question: _identity_check_

+
Description: Student did not customize name/roll_number.
AssertionStatusScoreError
[missing student identity]failed0.0
Student notebook missing personalized name/roll_number. Please define:

name = 'Your Name'
roll_number = 'Your Roll Number'

Student Summary

StudentRoll NumberMarks ObtainedOut of
Anushri242350924.024
shreya mehta242355824.024
nandini maheshwari242353824.024
Prerak242354524.024
savi kasliwal242358424.024
vasu jindal242357124.024
Surya Madhavan242356324.024
Samanvitha P242355224.024
Vishnu Tunga242357324.024
shreya burli242355724.024
Prarthana SB242354324.024
Subaaishwariya BL242356224.024
Kunal Gaur242353024.024
RESHU JAIN242354824.024
Pranav V242354224.024
Kabeer242357724.024
Aryan Chhabra252351223.024
Mukund Khetan242353723.024
Teresa George242356823.024
Isha Ivy242352122.024
Yuktha Jain SB242357622.024
Tamanna Gupta242356522.024
Akshat Mishra 242350422.024
Sesha Sai Sriya.K242352722.024
Ishika Khandelwal242352221.024
Jiya Kadate242352421.024
Rintu Thomas242354921.024
SRISHTI242356121.024
Hrisikesh Mondal242352021.024
ISHITA242352321.024
Anshala Sinha242350820.024
Daksh Pakkal242351520.024
Tanishq Bhojwani242356719.024
Arnav Jain242351119.024
Manan Jain242353319.024
Chinmay kataria242351419.024
Garvit Khatri242351819.024
RASHIMA MALHOTRA242303618.024
Parikshit Saraf242354114.024
Yug Khandelwal242357514.024
Sharan Sunil Krishnaa242355414.024
Trishikha Vijay242357012.024
Harsh Raj24235798.024
Pranav Kumar24235257.024