The network layer is responsible for logical connection setup, data forwarding, routing & delivery. This therefore means that the network (third) layer of the OSI model is responsible for allowing one computer to share information with other computers.
The answer is : Ergonomics. This improvement process removes risk factors that lead to injuries and allows for improved human performance and productivity. Applying ergonomic solutions can make employees more comfortable and increase productivity. It is important because when doing a job and our body is stressed by an awkward posture, extreme temperature, or repeated movement your musculoskeletal system is affected.
Answer:Screened Subnet Firewall
Explanation:Screened Subnet Firewalls is the firewall deploying mechanism that is used at the present time in the organizational area.It is used as because it is supposed to be a good option as it protects the networks and DMZ operating system from any kind of virus that can damage the connection. It works as the security section and protects the system.
<h2>answer:</h2>
Synchronized method is used to lock an object for any shared resource. When a thread invokes a synchronized method, it automatically acquires the lock for that object and releases it when the thread completes its task.','.
Answer:
The output of the given code as follows:
Output:
Area is: 12.60676
Explanation:
In the given code some information is missing so, the correct code to this question can be described as follows:
Program:
public class Test //defining class
{
public static void main(String[] args)//defining the main method
{
double radius= 2; //defining double variable radius
final double PI= 3.15169; //defining double variable PI
double area = radius * radius * PI; //defining double variable area that calculates values
System.out.println("Area is: " + area); //print values
}
}
Explanation:
- In the given java code a class "Test" is defined, in which a double variable "radius" is defined, which holds a value, that is 2.
- In the next step, a double constant variable, that is PI is defined, that holds a value, that is "3.15169".
- Then another double variable area is defined, that calculates the area value, and prints its value.