C. database administrators are responsible for organizing a company's data making sure all the data is accurate' available' and secure
Answer:
I think it would be Federal student loans if I am sure sorry if you get it wrong.
Explanation:
The tab used to instead a Hyperlink into a slide is the Insert tab under the “Links” group.
i = 1
while i < 10001:
total = 0
x = 1
while x < i:
if i % x == 0:
total += x
x+=1
if total == i:
print(str(i)+" is a perfect number")
i += 1
When you run this code, you'll see that 6, 28, 496, and 8128 are all perfect numbers.