Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

if you are using a sprite for your makecode arcade game, which code blo…

Question

if you are using a sprite for your makecode arcade game, which code block would you click on to edit the sprite? on start set mysprite to sprite of kind player move mysprite with buttons a. the sprite of kind player block b. the set mysprite block c. the move mysprite with buttons block d. the on start block

Explanation:

Brief Explanations

To determine which block edits the sprite, we analyze each option:

  • Option A: The "sprite of kind player" block has the sprite (the monkey icon) which is the area to click to edit the sprite's appearance or properties.
  • Option B: The "set mySprite" block assigns the sprite but doesn't edit it.
  • Option C: The "move mySprite with buttons" block controls movement, not editing the sprite.
  • Option D: The "on start" block is a trigger for code execution, not for editing the sprite.

Answer:

A. The sprite of kind player block