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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' failed 0.0
NameError: name 'check_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_number(-3) == 'Negative' failed 0.0
NameError: name 'check_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_number(0) == 'Zero' failed 0.0
NameError: name 'check_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert even_or_odd(3) == 'Odd' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Expected:
[1, 2, 3, 4, 5]

Actual:
5

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-[1, 2, 3, 4, 5]
+5

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
Assertion failed.

Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
Assertion failed.

Assertion: assert check_password('python') == 'Access Granted'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('PYTHON') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('java') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
Assertion failed.

Assertion: assert larger_number(4, 9) == 9

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(10, 3) == 10 failed 0.0
Assertion failed.

Assertion: assert larger_number(10, 3) == 10

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(5, 5) == 5 failed 0.0
Assertion failed.

Assertion: assert larger_number(5, 5) == 5

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(2) == 'Even'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(3) == 'Odd'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 failed 0.0
Assertion failed.

Assertion: assert sum_1_to_n(5) == 15

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert sum_1_to_n(10) == 55 failed 0.0
Assertion failed.

Assertion: assert sum_1_to_n(10) == 55

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
Assertion failed.

Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]

Expected:
[2, 4, 6, 8, 10]

Actual:
(1, False)

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-[2, 4, 6, 8, 10]
+(1, False)

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(10, 3) == 10 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(5, 5) == 5 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(2) == 'Even'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(3) == 'Odd'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(2) == 'Even'

Expected:
'Even'

Actual:
'even'

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Even'
+'even'

assert even_or_odd(3) == 'Odd' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(3) == 'Odd'

Expected:
'Odd'

Actual:
'odd'

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Odd'
+'odd'

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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.
Assertion Status Score Error
[missing student identity] failed 0.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
Assertion failed.

Assertion: assert check_password('python') == 'Access Granted'

Expected:
'Access Granted'

Actual:
'Access granted'

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Access Granted'
+'Access granted'

assert check_password('PYTHON') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('PYTHON') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('java') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert even_or_odd(3) == 'Odd' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert square_number(0) == 0 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(10, 3) == 10 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(5, 5) == 5 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 failed 0.0
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert sum_1_to_n(10) == 55 failed 0.0
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
NameError: name 'squares_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
Assertion failed.

Assertion: assert squares_1_to_n(5) == [1, 4, 9, 16, 25]

Expected:
[1, 4, 9, 16, 25]

Actual:
[2, 4, 6, 8, 10]

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-[1, 4, 9, 16, 25]
+[2, 4, 6, 8, 10]

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('PYTHON') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('java') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
Assertion failed.

Assertion: assert squares_1_to_n(5) == [1, 4, 9, 16, 25]

Expected:
[1, 4, 9, 16, 25]

Actual:
[2, 4, 6, 8, 10]

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-[1, 4, 9, 16, 25]
+[2, 4, 6, 8, 10]

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('PYTHON') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('java') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
Assertion failed.

Assertion: assert squares_1_to_n(5) == [1, 4, 9, 16, 25]

Expected:
[1, 4, 9, 16, 25]

Actual:
[2, 4, 6, 8, 10]

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-[1, 4, 9, 16, 25]
+[2, 4, 6, 8, 10]

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
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]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
Assertion failed.

Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 failed 0.0
Assertion failed.

Assertion: assert square_number(4) == 16

Expected:
16

Actual:
256

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-16
+256

assert square_number(0) == 0 failed 0.0
Assertion failed.

Assertion: assert square_number(0) == 0

Expected:
0

Actual:
1

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-0
+1

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
Assertion failed.

Assertion: assert check_password('python') == 'Access Granted'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('PYTHON') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('java') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
Assertion failed.

Assertion: assert larger_number(4, 9) == 9

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(10, 3) == 10 failed 0.0
Assertion failed.

Assertion: assert larger_number(10, 3) == 10

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(5, 5) == 5 failed 0.0
Assertion failed.

Assertion: assert larger_number(5, 5) == 5

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(2) == 'Even'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(3) == 'Odd'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 failed 0.0
Assertion failed.

Assertion: assert sum_1_to_n(5) == 15

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert sum_1_to_n(10) == 55 failed 0.0
Assertion failed.

Assertion: assert sum_1_to_n(10) == 55

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 failed 0.0
TypeError: type NoneType doesn't define __round__ method
This often means the function returned the wrong data type.

Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
TypeError: type NoneType doesn't define __round__ method
assert average_of_three(3, 3, 3) == 3 failed 0.0
Assertion failed.

Assertion: assert average_of_three(3, 3, 3) == 3

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert average_of_three(10, 0, 5) == 5 failed 0.0
Assertion failed.

Assertion: assert average_of_three(10, 0, 5) == 5

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Expected:
[1, 2, 3, 4, 5]

Actual:
5

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-[1, 2, 3, 4, 5]
+5

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
Assertion failed.

Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
Assertion failed.

Assertion: assert check_password('python') == 'Access Granted'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('PYTHON') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('PYTHON') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert check_password('java') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('java') == 'Access Denied'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
Assertion failed.

Assertion: assert larger_number(4, 9) == 9

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(10, 3) == 10 failed 0.0
Assertion failed.

Assertion: assert larger_number(10, 3) == 10

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert larger_number(5, 5) == 5 failed 0.0
Assertion failed.

Assertion: assert larger_number(5, 5) == 5

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(2) == 'Even'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert even_or_odd(3) == 'Odd' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(3) == 'Odd'

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 failed 0.0
Assertion failed.

Assertion: assert sum_1_to_n(5) == 15

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError
assert sum_1_to_n(10) == 55 failed 0.0
Assertion failed.

Assertion: assert sum_1_to_n(10) == 55

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
File "<assertion>", line 1, in <module>
AssertionError

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('PYTHON') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('java') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(10, 3) == 10 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(5, 5) == 5 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert even_or_odd(3) == 'Odd' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 failed 0.0
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert sum_1_to_n(10) == 55 failed 0.0
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
NameError: name 'squares_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert average_of_three(3, 3, 3) == 3 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert average_of_three(10, 0, 5) == 5 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert even_or_odd(3) == 'Odd' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
NameError: name 'squares_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
Assertion failed.

Assertion: assert check_password('python') == 'Access Granted'

Expected:
'Access Granted'

Actual:
False

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Access Granted'
+False

assert check_password('PYTHON') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('PYTHON') == 'Access Denied'

Expected:
'Access Denied'

Actual:
False

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Access Denied'
+False

assert check_password('java') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('java') == 'Access Denied'

Expected:
'Access Denied'

Actual:
False

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Access Denied'
+False

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
Assertion failed.

Assertion: assert check_password('python') == 'Access Granted'

Expected:
'Access Granted'

Actual:
False

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Access Granted'
+False

assert check_password('PYTHON') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('PYTHON') == 'Access Denied'

Expected:
'Access Denied'

Actual:
False

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Access Denied'
+False

assert check_password('java') == 'Access Denied' failed 0.0
Assertion failed.

Assertion: assert check_password('java') == 'Access Denied'

Expected:
'Access Denied'

Actual:
False

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Access Denied'
+False

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(2) == 'Even'

Expected:
'Even'

Actual:
'even'

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Even'
+'even'

assert even_or_odd(3) == 'Odd' failed 0.0
Assertion failed.

Assertion: assert even_or_odd(3) == 'Odd'

Expected:
'Odd'

Actual:
'odd'

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-'Odd'
+'odd'

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
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]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('PYTHON') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('java') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Expected:
[1, 2, 3, 4, 5]

Actual:
[2, 4]

Diff:
--- Expected
+++ Actual
@@ -1 +1 @@
-[1, 2, 3, 4, 5]
+[2, 4]

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
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]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('PYTHON') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('java') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
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]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('PYTHON') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('java') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert even_or_odd(3) == 'Odd' failed 0.0
NameError: name 'even_or_odd' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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.
Assertion Status Score Error
[missing student identity] failed 0.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.
Assertion Status Score Error
[missing student identity] failed 0.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert square_number(0) == 0 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
NameError: name 'squares_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert square_number(0) == 0 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(10, 3) == 10 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(5, 5) == 5 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert average_of_three(3, 3, 3) == 3 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert average_of_three(10, 0, 5) == 5 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] passed 1.0

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] passed 1.0

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
Assertion failed.

Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5]

Could not extract Expected/Actual automatically.
Traceback:
Traceback (most recent call last):
File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions
exec(compile(code, "<assertion>", "exec"), namespace)
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]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 passed 1.0
assert square_number(0) == 0 passed 1.0

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('PYTHON') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert check_password('java') == 'Access Denied' failed 0.0
NameError: name 'check_password' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert square_number(0) == 0 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 passed 1.0
assert larger_number(10, 3) == 10 passed 1.0
assert larger_number(5, 5) == 5 passed 1.0

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] failed 0.0
NameError: name 'squares_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 passed 1.0
assert average_of_three(3, 3, 3) == 3 passed 1.0
assert average_of_three(10, 0, 5) == 5 passed 1.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'`
Assertion Status Score Error
assert check_number(5) == 'Positive' passed 1.0
assert check_number(-3) == 'Negative' passed 1.0
assert check_number(0) == 'Zero' passed 1.0

Question: numbers_1_to_n

+
Description: Example if n = 5 then **Return:** `[1, 2, 3, 4, 5]`
Assertion Status Score Error
assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] failed 0.0
NameError: name 'numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_numbers_1_to_n

+
Description: Example if n = 11 then **Return:** `[2, 4, 6, 8, 10]`
Assertion Status Score Error
assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] failed 0.0
NameError: name 'even_numbers_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: square_number

+
Description: **Example:** For input `4`, return `16`
Assertion Status Score Error
assert square_number(4) == 16 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert square_number(0) == 0 failed 0.0
NameError: name 'square_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: check_password

+
Description: **Example:** Input `'java'` → `'Access Denied'`; Input `'python'` → `'Access Granted'`
Assertion Status Score Error
assert check_password('python') == 'Access Granted' passed 1.0
assert check_password('PYTHON') == 'Access Denied' passed 1.0
assert check_password('java') == 'Access Denied' passed 1.0

Question: larger_number

+
Description: **Example:** Input `(4, 9)` → `9` **Return:** The larger number.
Assertion Status Score Error
assert larger_number(4, 9) == 9 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(10, 3) == 10 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert larger_number(5, 5) == 5 failed 0.0
NameError: name 'larger_number' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

Question: even_or_odd

+
Description: **Example:** Input `4` → `'Even'`
Assertion Status Score Error
assert even_or_odd(2) == 'Even' passed 1.0
assert even_or_odd(3) == 'Odd' passed 1.0

Question: sum_1_to_n

+
Description: **Example:** Input `5` → `15` because 1+2
Assertion Status Score Error
assert sum_1_to_n(5) == 15 passed 1.0
assert sum_1_to_n(10) == 55 passed 1.0

Question: squares_1_to_n

+
Description: if n is 5 **Return:** `[1, 4, 9, 16, 25]`
Assertion Status Score Error
assert squares_1_to_n(5) == [1, 4, 9, 16, 25] passed 1.0

Question: count_letter

+
Description: **Example:** Input `('banana', 'a')` **Return:** `3`
Assertion Status Score Error
assert count_letter('banana', 'a') == 3 passed 1.0
assert count_letter('apple', 'p') == 2 passed 1.0
assert count_letter('python', 'z') == 0 passed 1.0

Question: average_of_three

+
Description: **Example:** Input `(4, 8, 10)` → `7.3333...` **Return:** The arithmetic mean of the three numbers.
Assertion Status Score Error
assert round(average_of_three(4, 8, 10), 2) == 7.33 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert average_of_three(3, 3, 3) == 3 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.
assert average_of_three(10, 0, 5) == 5 failed 0.0
NameError: name 'average_of_three' is not defined
This means the required function was NOT defined, or is spelled incorrectly.

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.
Assertion Status Score Error
[missing student identity] failed 0.0
Student notebook missing personalized name/roll_number. Please define:

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

Student Summary

Student Roll Number Marks Obtained Out of
Anushri 2423509 24.0 24
shreya mehta 2423558 24.0 24
nandini maheshwari 2423538 24.0 24
Prerak 2423545 24.0 24
savi kasliwal 2423584 24.0 24
vasu jindal 2423571 24.0 24
Surya Madhavan 2423563 24.0 24
Samanvitha P 2423552 24.0 24
Vishnu Tunga 2423573 24.0 24
shreya burli 2423557 24.0 24
Prarthana SB 2423543 24.0 24
Subaaishwariya BL 2423562 24.0 24
Kunal Gaur 2423530 24.0 24
RESHU JAIN 2423548 24.0 24
Pranav V 2423542 24.0 24
Kabeer 2423577 24.0 24
Aryan Chhabra 2523512 23.0 24
Mukund Khetan 2423537 23.0 24
Teresa George 2423568 23.0 24
Isha Ivy 2423521 22.0 24
Yuktha Jain SB 2423576 22.0 24
Tamanna Gupta 2423565 22.0 24
Akshat Mishra 2423504 22.0 24
Sesha Sai Sriya.K 2423527 22.0 24
Ishika Khandelwal 2423522 21.0 24
Jiya Kadate 2423524 21.0 24
Rintu Thomas 2423549 21.0 24
SRISHTI 2423561 21.0 24
Hrisikesh Mondal 2423520 21.0 24
ISHITA 2423523 21.0 24
Anshala Sinha 2423508 20.0 24
Daksh Pakkal 2423515 20.0 24
Tanishq Bhojwani 2423567 19.0 24
Arnav Jain 2423511 19.0 24
Manan Jain 2423533 19.0 24
Chinmay kataria 2423514 19.0 24
Garvit Khatri 2423518 19.0 24
RASHIMA MALHOTRA 2423036 18.0 24
Parikshit Saraf 2423541 14.0 24
Yug Khandelwal 2423575 14.0 24
Sharan Sunil Krishnaa 2423554 14.0 24
Trishikha Vijay 2423570 12.0 24
Harsh Raj 2423579 8.0 24
Pranav Kumar 2423525 7.0 24