
Please enter your name
Grade
School
Prior Coding Experience (in years)
Create a variable called grade and make the number any number you want from 0 to 100. (This question is already answered for your reference)
Create a logic system using if statements that will check the grade and print out the proper grade
A: 90 - 100 B: 80 - 89 C: 70 - 79 D: 60 - 69 F: 59 and below
Using Loops, calculate the sum of all numbers in a range [10, 20]
(i.e. 10 + 11 + 12 + ... 20)
Using Loops, recreate the following pattern
*----
**---
***--
****-
Using a loop, construct a list containing numbers from 1 to 10, i.e.
[1, 2, 3, ... , 10]
Using a for loop, print every multiple of 3 from this list
Using a for loop, print every number of this list backwards
Create a function that swaps the first and the last value of a list
What are you interested in learning the most (if you have to pick one)?