💡 Please complete these questionnaires without using any outside resources.
1.

Please enter your name

2.

Grade

3.

School

4.

Prior Coding Experience (in years)

5.

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)

6.

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

7.

Using Loops, calculate the sum of all numbers in a range [10, 20] (i.e. 10 + 11 + 12 + ... 20)

8.

Using Loops, recreate the following pattern

*----
**---
***--
****-
9.

Using a loop, construct a list containing numbers from 1 to 10, i.e.

[1, 2, 3, ... , 10]

10.

Using a for loop, print every multiple of 3 from this list

11.

Using a for loop, print every number of this list backwards

12.

Create a function that swaps the first and the last value of a list

13.

What are you interested in learning the most (if you have to pick one)?