Your team has been asked to design a LAN for a very successful CPA firm with five departments in one building and a total of 560
employees. Currently, the firm has no networked computers, and it is open to any suggestions your team can offer. The firm does have a few requirements: It wants to make sure that it can easily expand its LAN in the future without exorbitant costs and moving a lot of equipment.
Every department must have very fast access to the LAN.
The LAN must remain up at all times.
Must use Windows 7 operating system.
As a team, determine what kind of LAN your team will design for this company.
Deliverable Instructions:
Devise and prepare a 5-6 page proposal.
Use your group discussion board or group virtual classroom to discuss the approach your team will take.
As a team, create a 1 page executive summary to summarize your design, and 3 to 5 page paper with diagrams about the detailed network design.
Put them into one Word document.
An operating system is the most important software that runs on a computer. ... It also allows you to communicate with the computer without knowing how to speak the computer's language. Without an operating system, a computer is useless.
Answer:
import java.util.Scanner;
public class CharTestt { public static void main(String[] args) { System.out.println("Please enter a character "); Scanner input = new Scanner(System.in); char letterStart = input.next().charAt(0); char thenextChar = (char)(letterStart+1); System.out.print(letterStart); System.out.println(thenextChar);
}
}
Explanation:
Import Scanner Class
Prompt user to enter a character
Read and save user's input in a variable char letterStart = input.next().charAt(0);
Knowing that the next character using ASCII is +1, create a new character variable and add 1
print the character entered and the new character all on same line without spaces