How did you see this then?
        
                    
             
        
        
        
The report shows that SERVER1 has six active TCP connections. The first two are in the state TIME WAIT, the third is in the state CLOSE WAIT, and the final three are in the state ESTABLISHED.
TCP: What is it?
One of the key protocols in the Transmission control protocol / internet family is the Transmission Control Protocol. (TCP). It was first used to supplement the Internet Protocol in network protocol deployments (IP). TCP/IP is the name given to the full suite as a result. Software running on hosts communicating via an IP network can transmit a stream of octets (bytes) in a reliable, orderly, and error-checked manner using TCP. TCP is a key component of popular internet services like the World Wide Web mail, remote management, and file transfer.
To know more about TCP 
brainly.com/question/28119964
#SPJ4
 
        
             
        
        
        
Answer:
C++ Program to Find Area and Circumference of a Circle
Area of Circle = PI X Radius X Radius. Where, Where PI is a constant which is equal to 22/7 or 3.141(approx)
Circumference or Circle = 2 X PI X Radius.
Circumference or Circle = PI X Diameter.
Explanation:
 
        
             
        
        
        
In the above case, the option that will help to guide your company in choosing between valuing privacy is a set of internal principles.
<h3>What are internal control principles?</h3>
The principles of internal control are known to be  needed in the management to set methods in place to make sure that company assets are kept.
Therefore, In the above case, the option that will help to guide your company in choosing between valuing privacy is a set of internal principles.
Learn more about internal principles from
brainly.com/question/27015769
#SPJ1
 
        
             
        
        
        
Answer:
Explanation:
The following code is written in Java, the function takes in a list with the previous day's values. The function then uses that list, loops through it and multiplies each individual value by 2 and returns the modified list. The first red  square represents the test case for the function, while the second red square in the image represents the output.
   public static ArrayList<Integer> doubleIt(ArrayList<Integer> mylist) {
        for (int x = 0; x<mylist.size(); x++) {
            mylist.set(x, mylist.get(x)*2);
        }
        return mylist;
    }