Answer:
code (in python) is in the explanation
Explanation:
import random
def dice(n):
count = 1
t = list()
while count <= n:
i = random.randint(1,6)
t.append(i)
count += 1
print(sum(t))
Hope this helps!
Write "i" the write random words then delete it and add the lowercase i
Answer:
Computers use binary numbering system to compute, while humans use hexadecimal numbering system to shorten binary and make it easier to understand