Agreed to all the terms mentioned in the contract
Answer:
Explanation:
I am attaching the table as an image with updated table containing required information for the following WAN technologies.
T1/DS1 => Digital Signal 1 (T-Carrier 1),
T3/DS3 => Digital Signal 3 (T-Carrier 3),
OC3 (SONET) => Optical Carrier 3 (Synchronous Optical Networking),
Frame Relay,
ATM => Asynchronous Transfer Mode,
MPLS => Multi-protocol Label Switching,
EPL => Ethernet Private Line.
Although you have mentioned most of the information yourself, there were some wrong data in it. So I have updated them with correct information in the attached table.
Answer:
<u>class -files and auxiliary resources</u>
Explanation:
JAR stands for Java Archive which allows one to make multiple file bundles into a single file which is archive file and these JAR files contains in them the the auxiliary resources and the class files.
The archive file allows us to be storage efficient by compressing our data and files.
These files also allows us to transform our software into extensions as well.
For the enforcement of consistency of version of the packages, these files can be sealed optionally.
Answer:
In Java:
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String name;
System.out.print("First name: ");
name = input.next();
name= name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();
System.out.print(name);
}
}
Explanation:
This declares name as string
String name;
This prompts the user for first name
System.out.print("First name: ");
This gets the name from the user
name = input.next();
This capitalizes the first letter of name and makes the other letters to be in lowercase
name= name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();
This prints the formatted name
System.out.print(name);