Explanation:
Age = 23.
To convert a base 10 number to hexadecimal number we have to repeatedly divide the decimal number by 16 until it becomes zero and store the remainder in the reverse direction of obtaining them.
23/16=1 remainder = 5
1/16=0 remainder = 1
Now writing the remainders in reverse direction that is 15.
My age in hexadecimal number is (15)₁₆.
Your name in binary would be "01010010 01101001 01110110 01100001 01110011"
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!
F5 key on your keyboard in word and power point if that is what you are referring to.
I think the first problem is B. and the second problem is D.