Answer:
class Case //Case class
{
String owner_name,color; //members to store information name and color
Case(String name,String color) //constrictor with two parameters
{
this.owner_name = name; //members initialization
this.color = color;
}
public String getName() //to get name
{
return owner_name;
}
public String getColor() //to get color
{
return color;
}
public String toString()//override string method
{
return "Case Owner: " + owner_name + ", " + "Color: "+ color;
}
}
class Main //test class
{
public static void main(String args[])
{
String na,color;
Case c = new Case("Joy","Green"); //create instance of class Case and set constructor parameters
na = c.getName();
color = c.getColor();
System.out.println(c);//print statement tp print instance of a class
System.out.println(c.toString()); //print with override toString
}
}
Explanation:
D WiFi
It uses wifi to connect to the internet
Answer:
The answer is PoE+.
Explanation:
PoE (Power Of Ethernet) is a method that is widely used everywhere where there is an internet connection needed because of its ability of being able to deliver both power and the internet connection from the same line. The different PoE types are selected according to the amount of voltage that is needed to be delivered.
In the example given in the question, ABC is adding a Wi-Fi network through PoE Ethernet Switches in "wiring closets" which is where the power is added to the line. The type of PoE implementation used is PoE+ which provides higher power because it is going through the wiring closets.
I hope this answer helps.