Scratch Quiz
This is one of the ways I made my scratch quiz. There were Two ways of making the code for the answer boxes. The one on the left is the better one I made. What i did was I made a variable called 'Answer' so I could add one on to 'Answer' so it changes along with the question that the main sprite is on. The reason for this is so the behavior of the answer boxes when clicked changes accordingly to the question number, So if i were on question 1, answer 'A' may be right but on question 2, answer 'A' may be wrong. This meant that I only had to use 3 answer box sprites for the whole quiz. The code on the right is completely different from the first one. First of all, it has no variable, so what i did for that one was that I made a new sprite for each question and i made different codes for each of them so instead of changing the sprites behavior like the first one did, this one changes the sprite completely! This wasn't as effective because since every question had its own set of 3 sprites, i ended up having to make a total of 15 answer box sprites! I think that the second method is more useful because it requires much less sprites and is much easier to change or spot a problem. Also, the second method was quite buggy and didn't always work properly.