It seems you are working on a Scratch project and I can guide you through the steps for Parts A, B, and C. While I can't take screenshots, I can describe what you need to do in detail.
Part A: Think a Thought
- Open Scratch and load your project titled "First Program."
- Drag the
when green flag clicked
block from the Events category to the script area. - Go to the Looks category and select the
think [ ] for [2] seconds
block. - Change the text inside the think block from "Hmm..." to something appropriate for your sprite and background, for example, "What a beautiful day!" or "I love dancing!"
- Run your program by clicking the green flag to see what your sprite is thinking.
- Take a screenshot of your sprite's thought (the think bubble) and paste it into a word processing document.
Part B: Dance!
- Continue in your Scratch project. Below the previous blocks, add the
when green flag clicked
block again or continue with the same one if you'd like. - Add a motion block like
repeat 10
orforever
(to keep it going). - Inside this loop, add the following blocks:
move [10] steps
turn cw [15] degrees
orturn ccw [15] degrees
- To add a bit more flair, you might also use the
play sound [sound] until done
block from the Sounds category to make it dance to music. - Run your program to see your dancing sprite.
- Take a screenshot of your blocks of code (the dance script) and paste it into your word processing document.
Part C: Take a Walk
- Still in your Scratch project, create a new script with another
when green flag clicked
block. - Drag a
forever
block from the Control category into your script area. - Inside the forever loop, add the following blocks:
move [10] steps
- Add an
if on edge, bounce
block from the Motion category.
- This will make your sprite walk continuously and turn around whenever it reaches the edge of the screen.
- Run your program to check that your sprite walks and bounces at the edges.
- Take a screenshot of your blocks of code that make the sprite walk and paste it into your word processing document.
Final Submission
Make sure to review everything in your document—double-check that you have included all required screenshots and any specific comments or descriptions for clarity before submitting it.
If you have any questions or need further guidance, feel free to ask!