Answer: Server based network
Explanation:
The server based network is the type of network in which the special type of computer mainly handle the various networking tasks like the storing file, managing printers and authenticate the users in the system. The server based network are also responsible for run various types of application like the email and the database system.
The microsoft windows 2016 and the window 2012 are the two ideal OS (Operating system) that mainly used in the server based network.
Therefore, we use the server based network as it easy to backup and manage in the networking system.
Answer:
here is what I think!
Explanation:
G-mail is:
- secure
- easy to use
- fast
- can be used to sign in anywhere!<u>(including brainly)</u>
- you don't need to pay when creating one
- can help you in billing and buying apps and their paid product
- <em><u>you </u></em> can use it because <em>why no!</em>
- some websites need G-mail to be used
thats why you should use G-mail
tell me if you have an idea!
Answer:
There are many types of information al references such as Encyclopedias, dictionaries, thesaurus Almanacs, atlases, thesauruses, Atlases, almanacs, and encyclopedias.
Explanation:
There are also informational websites. The way to find this is to look at the website url to see if it ends in .gov, .edu, and .org . But make sure you cite your source so you don't plagiarize.
If you don't have any questions feel free to ask in the comments.
Answer:
mylist = [ ]
for i in range(7):
mylist.append (int(input("Enter the number of bugs for each day ")))
print(mylist)
print("The highest number of bugs is ")
print(max((mylist)))
Explanation:
- Create and Initialize an empty (mylist)
- Using the .append method, we request and add the bugs for each day into the list
- print out the list
- Use the max function to find the highest number of bugs in the list and print it out