Answer:
Charles Babbage
Explanation:
Analytical engines were presumed to be the first general-purpose computer which was designed sometime in the 19th century by Charles Babbage - a British mathematician and inventor. A series of punch cards was used by Charles Babbage in his design of the engine. These punch cards were used for various operations such as arithmetical operations, numerical constants and other operations such as load and store.
<em>Hope this works!</em>
Answer:
/28 -- 16 Subnets -- 14 Hosts/Subnet
14*16 = 224 hosts
Explanation:
see https://www.aelius.com/njh/subnet_sheet.html
Intranet is the answer to this question.
Google definition: An intranet is a network based on TCP/IP protocols (an internet) belonging to an organization, usually a corporation, accessible only by the organization's members, employees, or others with authorization.
File maintenance supports adding, modifying, or deleting records, as well as creating backup copies of the database
Answer:
n = int(input("Enter the n (positive odd integer): "))
for i in range(1, n+1, 2):
print(i*"*")
for i in range(n-2, 0, -2):
print(i*"*")
Explanation:
*The code is in Python.
Ask the user to enter the n
Create a for loop that iterates from 1 to n, incrementing by 2 in each iteration. Print the corresponding number of asterisks in each iteration
Create another for loop that iterates from n-2 to 1, decrementing by 2 in each iteration. Print the corresponding number of asterisks in each iteration