Answer:
Web Server
A web server is server software, or hardware dedicated to running this software, that can satisfy client requests on the World Wide Web. A web server can, in general, contain one or more websites. A web server processes incoming network requests over HTTP and several other related protocols.
<span>Which kind of device does a computer need in order to provide information to a person or something else?
The answer is
B. output device
</span>
First we need to understand what "n for n in range(10)" means. Basically, we are iterating through all the values n that are in the range of 10 (meaning 0, 1, 2, 3, ..., 9).
Next we are evaluating if n%2. The percentage sign is used to represent modulus which is the remainder of when two numbers are divided. In this case, we are dividing n by 2, and the remainder is our result. When dividing by 2, the only possible remainders are 0 or 1, which when used in an if statement represent the boolean vlaues false and true, respectively. We are doing this calculation for each n from 0 to 9, and if the result is true, we output n to an array.
The numbers that will result in true (a remainder of 1) are the odds numbers. For example, 4/2 = 2 with nothing left over while 5/2 = 2 with 1 left over.
So the following is returned:
[1, 3, 5, 7, 9]
two people have to answer the question and at the bottom of the question you'll see a crown and you just click on that to give them brainliest
Windows 8 Firewall rules that can be defined include;
Inbound Rules
Outbound Rules
Connection - specific Rules
Inbound Rules – Type of rules that help protect your PC from other computers from making unsolicited connections to it.
Outbound Rules – They help protect your PC by preventing it from making unsolicited connections to other computers.
Connection – specific rules – These rules help a computer admin to create and apply custom rules based on a particular connection.