Answer:
shortNames = ['Gus', 'Bob','Zoe']
Explanation:
In this assignment, your knowledge of list is been tested. A list is data structure type in python that can hold different elements (items) of different type. The general syntax of a list is
listName = [item1, "item2", item3] 
listName refers to the name of the list variable, this is followed by a pair of square brackets, inside the square brackets we have items separated by commas. This is a declaration and initialization of a list with some elements.
The complete python code snippet for this assignment is given below:
<em>shortNames = ['Gus', 'Bob','Zoe']</em>
<em>print(shortNames[0])</em>
<em>print(shortNames[1])</em>
<em>print(shortNames[2])</em>
 
        
             
        
        
        
Faster communication, information spread faster, group messages
        
             
        
        
        
The use of public wireless connections can increase a user's vulnerability to monitoring and compromise. <u>VPN </u> software can be used to encrypt transmissions over public networks, making it more difficult for a user's PC to be penetrated.
Explanation:
- A VPN, or Virtual Private Network, allows you to create a secure connection to another network over the Internet. 
 - VPNs can be used to access region-restricted websites, shield your browsing activity from prying eyes on public Wi-Fi, and more. .
 - Virtual Private Network, is a private network that encrypts and transmits data while it travels from one place to another on the internet. VPNs aren't just for desktops or laptops, you can set up a VPN on your iPhone, iPad or Android phone.
 - A VPN encrypts the traffic from your machine to the exit point of the VPN network. A VPN isn't therefore likely to protect you from an adversary like Anonymous.
 -  VPNs add another layer of encryption to your internet traffic, your latency will go up and speeds will go down. 
 
 
        
             
        
        
        
Answer:
//The Employee Class
public class Employee {
    char name;
    long  ID;
//The constructor   
 public Employee(char name, long ID) {
        this.name = name;
        this.ID = ID;
    }
//Method Get Person
    public void getPerson (char newName, long newId){
        this.ID = newName;
        this.ID = newId;
    }
//Method Print
    public void print(){
        System.out.println("The class attributes are: EmpName "+name+" EmpId "+ID);
    }
}
The working of the class is shown below in another class EmployeeTest
Explanation:
public class EmployeeTest {
    public static void main(String[] args) {
        Employee employee1 = new Employee('a', 121);
        Employee employee2 = new Employee('b', 122);
        Employee employee3 = new Employee('c', 123);
        employee1.print();
        employee2.print();
        employee3.print();
    }
}
In the EmployeeTest class, Three objects of the Employee class are created.
The method print() is then called on each instance of the class.