In the lesson, we will do the digital footprint test of our students with scratch. For this, we add a sprite to our screen that will give instructions to the test, and 2 buttons for yes and no answers. Since the answers to the questions we ask will be yes and no, we create variables that will keep the number of yes and no. At the end of the test, we multiply the sum of the yes numbers by 2 and the sum of the no numbers by 1. We assign the result to the yes score and no score variable. We add the values in these variables and assign them to the total score variable. The numerical values of the result have a corresponding value. I will give them at the end of the article. Let's move on to the coding part; We write the following codes inside our human sprite. When the green flag is clicked, we set the variables that hold the total result to 0. The purpose of zero is that when we restart the test,...