Answer:
All functions were written in python
addUpSquaresAndCubes Function
def addUpSquaresAndCubes(N):
squares = 0
cubes = 0
for i in range(1, N+1):
squares = squares + i**2
cubes = cubes + i**3
return(squares, cubes)
sumOfSquares Function
def sumOfSquares(N):
squares = 0
for i in range(1, N+1):
squares = squares + i**2
return squares
sumOfCubes Function
def sumOfCubes(N):
cubes = 0
for i in range(1, N+1):
cubes = cubes + i**3
return cubes
Explanation:
Explaining the addUpSquaresAndCubes Function
This line defines the function
def addUpSquaresAndCubes(N):
The next two lines initializes squares and cubes to 0
squares = 0
cubes = 0
The following iteration adds up the squares and cubes from 1 to user input
for i in range(1, N+1):
squares = squares + i**2
cubes = cubes + i**3
This line returns the calculated squares and cubes
return(squares, cubes)
<em>The functions sumOfSquares and sumOfCubes are extract of the addUpSquaresAndCubes.</em>
<em>Hence, the same explanation (above) applies to both functions</em>
Answer: Assistive technology
Explanation: Assistive technology is the technology that is used by the people for their help to carry a task or ease their challenges. This equipment provides aid to many people in many field such as class rooms.
The case mentioned in the question about the Ms. Idante for using the aids and equipment such keyboards as alternatives ,adaptive services etc for the disabled students demonstrates about the assistive technology
She is raking help of these equipment so that it can assist the children and help them to work properly and conveniently.
Answer:
Tool Preset Menu in the option bar
Explanation:
This allows you to customize and define characterisitics on a preset brush, such as size, shape, and hardness.
hope this helps :)