Answer:
The correct answer to the following question will be "Server".
Explanation:
- Any device with a network connection is a host, but only hosts which accept other device connections (climates) are Servers.
- All servers were hosts, but the servers aren't all hosts.
- Each host network is a node, however not all network nodes are a host. Networking hardware such as modems, hubs, and network switches are not necessarily network addresses allocated (except for administrative purposes sometimes).
Answer:
The correct answer for the given question is "Computer virus"
Explanation:
A computer virus is a software program that is installed automatically without user's knowledge and designed to duplicate itself .The main purpose of computer virus is to harm the computer system.
Some of the points regarding computer virus
1.The computer virus contain malicious software Which harm the computer system.
2.It damage the computer computer system in such away that sometimes users will unable to access some certain functionality of computer system.
Answer:
The algorithm is as follows:
Input number
count = 0
while(number not equal 0)
number = number / 10
count = count + 1
end
Print count
Explanation:
This gets input for the integer number
Input number
This initializes count of digits to 0
count = 0
The following loop is repeated while number is not 0
while(number not equal 0)
This performs integer division of the number by 10; the resulting division is saved in variable number
number = number / 10
The count variable is incremented by 1
count = count + 1
The loop ends here
end
This prints the count of integers
Print count
<em>See attachment for flowchart</em>
Answer:
The answer is false
Explanation:
When you delete a file imagine you are erasing the path there. The file still will exist until it is wrote over. If you wish to retrive it many programs can do it for you.