The Computer Fraud and Abuse Act I believe. Sorry if I’m wrong and I hope that it helps :)
The correct choices are:
having the user guess a number and keep guessing till they get it right
allowing the user to enter their best friends names without saying how many friends they can have
writing a program to average numbers without requiring the user to count the numbers.
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:
Answer:
Trunk
Explanation:
Gigabit switches are meant for expanding the ethernet. Through this, you can add more PC to the ethernet. A managed switch is meant for providing more tailored features and tools to the users. The unmanaged switch only allows the two devices on the network to communicate with each other, as it just provides the connectivity. And for setting up the VLANs on it, we need the Trunk Switch. And hence, the correct option is Trunk.
To take a screen shot press the 'prt scn' button
stands for print screen. this screen shot is then put in the clipboard for pasting