Answer:
In today's world, everyone using smartphones as it easily allow to communicate by using different types of features like texting, video, e-mail and by using internet we can run various types of applications.
Smartphones carries one of the main and important skills that is show our current location. By using various types of applications like Global positioning system (GPS), cell ID and wifi we can easily trace the location.
But there is different types of option according to the individual requirement as some people want privacy as they are not interested to share their location to anyone.
Answer:
Written in Python
for num in range(1,1001):
sum=0
for j in range(1,num+1):
if num%j==0:
sum = sum + j
if num == sum:
print(str(num)+" is a perfect number")
Explanation:
This line gets the range from 1 to 1000
for num in range(1,1001):
This line initializes sum to 0 for each number 1 to 1000
sum=0
This line gets the divisor for each number 1 to 1000
for j in range(1,num+1):
This following if condition line checks for divisor of each number
<em> if num%j==0:
</em>
<em> sum = sum + j
</em>
The following if condition checks for perfect number
if num == sum:
print(str(num)+" is a perfect number")
Answer: see guidelines in explanation
Explanation:
For Mario to make his document accessible to technology assistants, he needs to do the following;
-Access the accessibility checker by clicking the FileHomeReview tab
-Click the InfoNewOpen option
-Click the Check for IssuesManageDocumentProtect, the document icon
-Then, click Check accessibility option, the accessibility pane will open.
-He needs to read the information about errors, warning, tips and steps to take to make his document accessible to other users.
Answer:
Since we are using three disk allocation strategies,continuous linked and indexed,therof to process and read allocation strategies we need 99830 disk blocks.
Answer:
True
Explanation:
I am a coder myself and I say this is true because it executes it if the listed statement or variable is true. This is also the same for the while loop.