Answer: Closed port
Explanation:
Port 23 basically refers to the telnet which provide very severe services and it is used to access the server remotely. We should always closed the port 23, when we are not using telnet services because to prevent it from being hacked due to the port scanning.
As, now a days it is rarely used by the hackers as it is difficult to access this services from the server.
Therefore, Closed port is the correct answer.
Answer:
The answer to this question can be given as:
Class definition:
public class Averager //define class Average.
{
private int sum = 0;
//define variable sum.
private int count = 0;
//define variable count.
public int getSum() //define function getSum().
{
return sum; //return value.
}
public void add(int x)
//define function add().
{
sum = sum + x; //calculate sum
count=count+1; //increase value of count.
}
public int add(int x)
//define function add().
{
return count; //return value.
}
public double getAverage() //define function getAverage().
{
return (double)sum/count; //return value
}
}
Explanation:
The above class definition can be described as:
- In the above class definition first we define a class that is " Averager". In this class we define two integer variable that is "sum and count" and assign a value that is 0. Then we define a functions :
- First we define getSum() function in this function we does not pass any value and the return type of this function is int that will return an integer value.
- Then we define add() function we use this function two times but both functions have different from each other.
- In first time implementation, we define this function and the return type of this function is void which means it does not return any value. In this function, we calculate the sum value and increase the value of the count variable by 1.
- In second time implementation, we define this function and the return type of this function is int which means it will return a value. In this function, we will return the count variable value.
- At the last, we define a getAverage() that calculates the average of the added values in the sum variable and returns its value.
<em>Answer:</em>
<em>A loosely organized collection of citizens and engineers who communicate mostly by email. </em>
Explanation:
A software EULA is an agreement related to the terms of use of the software
the terms of use of the software
<u>Explanation:</u>
EULA stands for End User License Agreement. It can be defined as an agreement related to the terms of use of the software. EULA provides the user with all the details and any restrictions that have been imposed on the application by the developer.
In order to use the software, the user has to agree with all the terms and conditions specified in the EULA. The most common restriction imposed on an application/software is that it shouldn't be shared with anyone, in proprietary software.
John can find the amount of Random Access Memory (RAM) memory installed on his computer with the Windows 7 under the category “<u>System and Security</u>” in the Control Panel.
To know the total amount of installed RAM through Control Panel in the computer with Windows 7, John should follow the steps as:
- Click the category named “System and Security”
- Now under “System”, click “View amount of RAM and processor speed”
- “Device Specifications” section displays the amount of installed RAM in John’s computer
Thus, above are the steps by which John’s can find the amount of installed RAM in his Windows 7 computer’s Control Panel.
What is Random Access Memory (RAM)?
RAM is the temporary memory in computers that stores the data currently being used by the processor.
You can learn more about Control Panel at
brainly.com/question/1445737
#SPJ4