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>
One of the disadvantages of a server-based network compared to a peer-to-peer network is: 1) Additional costs.
<h3>What is a server?</h3>
A server can be defined as a dedicated computer system that is designed and developed to provide specific services to other computer devices or programs, which are commonly referred to as the clients.
<h3>Types of server.</h3>
In Computer technology, there are different types of server and these include the following:
- Web server
- Email server
- File server
- Database server
- Proxy server
<h3>What is a
Peer to Peer (P2P) Network?</h3>
In Computer networking, a Peer to Peer (P2P) network can be defined as a type of network that are designed and developed to connect similar computers that share data and software with each other at lesser cost in comparison with other network service.
In this context, we can infer and logically deduce that one of the disadvantages of a server-based network compared to a peer-to-peer network is additional costs.
Read more on Peer to Peer Networks here: brainly.com/question/1932654
#SPJ1
Complete Question:
What is one of the disadvantages of a server-based network compared to a peer-to-peer network?
1) Additional costs
2) none of these choices
3) Decentralized data access
4) Less secure
5) Difficult to expand
True. It will say "directory not empty"
Answer: False
Explanation:
Unguided medium employs an antenna for transmitting through air or vacuum.
For guided mediums the transmission is in the form of twisted copper wires, shielded twisted copper wire and optical fibres. They henceforth do not depend upon antennas for transmission through air using antennas.
Answer:
Boot partition and system partition
Explanation:
System partition is the primary partition that is used as the active boot partition,it saves boot files and all files that will be used. System partition is also known as the system directory or root directory and is usually given the identifier "c"
Boot partition is the disk partition that holds the files for the operating system files Windows operating system (either XP, Vista, 7, 8, 8.1 or 10), it works with the system partition and tells the computer where to look when starting. It given the identifier of letter "D" or "E"