A hyperlink is a feature that takes you to a different page when you click on it. That page could be part of the same website or a totally different website.
Let me know if you have any questions.
Answer:
I wrote this myself, it should be working. I think this is what the instructions were looking for.
The code below should return
Squared: 1296
Mod: 0
Quadrupled: 16
Explanation:
def threeParams(squared, mod, quadruples):
array = [squared, mod, quadruples]
array[0] = squared ** 2
array[1] = mod % 5
array[2] = quadruples * 4
return array
valueArr = threeParams(36, 15, 4)
print(f"Squared: {valueArr[0]}\nMod: {valueArr[1]}\nQuadrupled: {valueArr[2]}")
Answer:
d) rolling a pair of dice in monopoly
Explanation:
an algorithm is a process or set of rules followed in a particular order to perform a certain task. all of the other answers are a set of instructions that lead to something except for rolling a pair of dice. rolling a pair of dice can be a part of instruction but its not a process in itself.
hope this makes sense!
21%4 is 1.
21-4=17
17-4=13
13-4=9
9-4=5
5-4=1