Answer:
def power(base, expo):
if expo == 0:
return 1
else:
return base * power(base, expo-1)
Explanation:
*The code is in Python.
Create a method called power that takes base and expo as parameters
Check if the expo is equal to 0. If it is return 1 (This is our base case for the method, where it stops. This way our method will call itself "expo" times). If expo is not 0, return base * power(base, expo-1). (Call the method itself, decrease the expo by 1 in each call and multiply the base)
Answer:
The Notebook, Beauty and the Beast, Step Brother, The Breakfast Club and The Little Mermaid
Explanation:
D. Speak your ideas with respect on the internet .
Answer:
You could just use a code library.
Explanation: