The two extensions in scratch are correctly matched to their accessibility goals Translate extension and Text to speech extension.
<h3>What are Scratch Extensions?</h3>
Scratch extensions are known to be used in an interface with external hardware and information outside of the Scratch website via new blocks.
Note that The two extensions in scratch are correctly matched to their accessibility goals Translate extension and Text to speech extension.
Learn more about scratch from
brainly.com/question/25720264
#SPJ1
The ribbon is a set of toolbars at the top of the window in Office programs designed to help you quickly find the commands that you need to complete a task. Sometimes the ribbon can get hidden and it's hard to find. The quickest way to show the ribbon is to click on any visible tab, like Home<span>, </span>Insert<span> or </span>Design<span>. You might also want to hide the ribbon to maximize screen space.</span>
The primary key is the block under the Movie ID column.
The Field is the Movie Name.
The Record is the block that goes with the first row of data.
The Table is the bottom block in the center.
Answer:
speed = float(input("Enter the speed: "))
hours = int(input("Enter the hours: "))
distance = 0
for i in range(hours):
distance += speed * 1
print("The distance after " + str(i+1) + ". hour(s): " + str(distance))
Explanation:
*The code is in Python.
Ask the user to enter the speed and the hours
Initialize the distance as 0
Create a for loop that iterates hours times. Inside the loop, calculate the cumulative distance traveled at the end of each hour and print it (Note that the distance = speed x hour)