- Level 1: Grade 4, 5
- Question 1
- Question 2
- Question 3
- Level 2: Grade 6
- Question 4
- Question 5
- Level 3: Grade 7, 8
- Question 6
- Question 7
- Level 4: Grade 9, 10
- Question 8
- How to submit your answers
Level 1
: Grade 4, 5
Question 1
Backup Link in case you encounter issues :-
Question 1
#----------------------------------------------------#
# Q: What values of a and c lead to number = -2158.4 #
#----------------------------------------------------#
a = 0
c = 0
b = -3
number = a*100 + b*10 + c
Expected Output
Question 2
Backup Link in case you encounter issues :-
Question 2
#-----------------------------------------------------------------------#
# Q: Draw 4 circles that touch each other and fill up the entire canvas #
#-----------------------------------------------------------------------#
circle(200, 200, 100)
Expected Output
Question 3
Backup Link in case you encounter issues :-
Question 3
#-------------------------------#
# Q: Make the answer equal to 3 #
#-------------------------------#
answer = 56 - 7 - 1 - 4
Change the - sign to +, -, / or * and, if needed, insert brackets to make the result of the equation equal to 3
Expected Output
Level 2
: Grade 6
Question 4
Backup Link in case you encounter issues :-
Question 4
#---------------------------------------------------------------#
# Q: Edit the code so that the average works in both dimensions #
#---------------------------------------------------------------#
Expected Output
Question 5
Backup Link in case you encounter issues :-
Question 5
#-------------------------------------------------------------#
# Q: Find and Display the Perimeter & Area of the shape drawn #
#-------------------------------------------------------------#
Expected Output
Level 3
: Grade 7, 8
Question 6
Backup Link in case you encounter issues :-
Question 6
#--------------------------------------------#
# Q: Reflect the circle along the black line #
#--------------------------------------------#
Expected Output
Question 7
Backup Link in case you encounter issues :-
Question 7
#--------------------------------------#
# Q: Find the Area of the white region #
#--------------------------------------#
Both Triangles are EQUILATERAL.
Area should be correctly calculated even as the triangles overlap
Expected Output
Level 4
: Grade 9, 10
Question 8
Backup Link in case you encounter issues :-
Question 8
#-----------------------------------------------------------------------#
# Q: Find the equation of y in terms of x, passing through all 3 points #
#-----------------------------------------------------------------------#
a = 0
b = 0
c = 0
y = a*x*x + b*x + c
Find the values of a, b, c for which (x1, y1), (x2, y2) and (x3, y3) all lie on the quadratic equation ax² + bx + c
Expected Output
How to submit your answers
For each question, please copy your answers between the dashed lines and paste them into the submission form provided. Do NOT paste your entire code into the submission form: