Answer: The green and white wire (g) should be in pin 1 according to T568A standard.
Explanation: Please see diagram attached.
(source of image: http://www.fiber-optic-components.com/rj45-connector-used-in-ethernet-connectivity.html)
Answer: C. Swap File
Explanation: Swap files provide some space for programs for the computer and virtual memory.
The type of network that consists of multiple Windows computers that share information is peer-to-peer. In this network, the computer serves as an authoritative source of user information.
<h3>Peer-to-peer computer networks</h3>
A peer-to-peer (P2P) network can be defined as a type of network where the computer acts as a source of user information.
In P2P, a cluster of different computers are linked and they have the same permissions for processing data in the network.
This type of computer network (peer-to-peer computer network) has been created to serve and/or receive data.
Learn more about peer-to-peer computer networks here:
brainly.com/question/1172049
Answer:True
Explanation:
Many organizations find themselves in the position of being data rich and information poor. Even in today's electronic world, managers struggle with the challenge of turning their business data into business intelligence.Data in its raw form does not help managers in reaching their business decisions. In this electronic age data collection has been made simple .However the value of that data can only be seen when it is processed and it becomes information. It can help managers to make quick business decisions that will be used to make come up with important business strategies .It follows that when data is collected in its various forms it should then be processed meaning that the business managers can either use business Intelligent software that can present the data in a meaningful form like graphs . pie charts and other forms that can be easily interpreted and reflect the trends that have been presented by the raw data .The organisation should find value in the data that they have collected and tell the story that leaves in the data.
Task 1:
float75 = float(75)
string75 = "75"
# you cannot add together a number and a string because a string has no inherent numerical value like a number does.
Task 2:
num = float(input("Enter a number"))
print(num**2)
Task 3:
num = int(input("Enter an integer: "))
print("When you divide "+str(num)+" by 7, the quotient is "+str(num//7)+" and the remainder is "+str(num%7)+".")
Task 4:
gigs = int(input("How many gigabytes does your flashdrive hold? "))
print("A flashdrive with "+str(gigs)+ " gigabyte(s) holds "+str(gigs*8589934592)+" bit(s).")
For task 4, you might have to change the number 8589934592 to something else. I'm not entirely sure how many bits are in a gigabyte. I hope this helps though.