IT 200 Milestone Two Guidelines And Rubric Scenario: A New ✓ Solved

IT 200 Milestone Two Guidelines and Rubric Scenario: A new

Scenario: A new owner has purchased Swagger Distribution Company, a company that distributes clothing and apparel. She does not have experience with IT-related problem solving, so she is contracting you, as an IT consultant, to help. For Milestone Two, you will submit a document summarizing the programming components and networking configuration of the distribution company.

Programming: Every day, when an employee of Swagger Distribution signs on to her computer, a pop-up window opens and gives a greeting to the employee. The new owner would like to continue to have the pop-up window but would like to change the greeting. This code is currently displayed on the computer screen at Swagger Distribution every morning when employees log on to their computers. The new owner would like you to: 1. Add a second line that tells employees, “Welcome to Swagger Distribution!” 2. Place the “Welcome” statement above the current date. 3. Change the word “Current” to “Today’s” on the date output. (Hint: To add a second line of output code, simply add a second System.out.println in the statement.)

Important: Clear all of the code that is already in the compiler so you can begin with a blank editor. For this area of the assignment: Identify the functionality of key code components such as what the functionality of “system.out.println” is along with other code components such as the calendar code and the semicolon. Briefly summarize the three changes that were made from the original code for Swagger using terminology you learned in this module. Add a screenshot of your code and output and paste into your document.

Networking: There are two possible configurations for Swagger Distribution’s network: a wired version and a wireless version. For this area of the assignment: Review the provided visual representation of the wired configuration and summarize it using IT terminology. Using the Basic Network Diagram template in Visio, create and describe a diagram that makes it possible for the “warehouse” and “offices” to have a wireless connection. Be sure to label each item. Paste a screenshot of your diagram in your Word document.

Rubric Guidelines for Submission: Written components of the project must follow these formatting guidelines when applicable: double spacing, 12-point Times New Roman font, and one-inch margins. The paper should be 1 to 2 pages in length, not including cover page and resources, and written in paragraph form.

Paper For Above Instructions

The Swagger Distribution Company, recently acquired by a new owner, seeks to enhance its IT infrastructure, particularly in terms of programming for user interaction and network configuration. As an IT consultant, my role involves advising on the necessary programming modifications and networking solutions suitable for the operational needs of the company.

Programming Enhancements

At the outset, the existing pop-up greeting program needs to be modified to align with the new owner's vision. The current code outputs a single line of greeting, and the proposed changes aim to enrich this interaction by adding a second welcoming line, adjusting the display format, and refining the terminology used.

The original greeting program may resemble the following sample code:

System.out.println("Welcome to Swagger Distribution!");

System.out.println("Current date: " + calendar.getTime());

To implement the requested modifications, we will perform the following changes:

  • Add a Second Line: We will incorporate a line that explicitly welcomes the employees to Swagger Distribution. This is achieved by inserting a new System.out.println statement above the existing date output.
  • Adjust the Greeting Order: The placement of the new greeting message is crucial; therefore, it will be positioned before the date information to ensure clarity and emphasis on the welcome message.
  • Terminology Update: The term "Current" will be replaced with "Today’s" to present a more personalized and relevant context for the date shown.

The modified code will look like this:

System.out.println("Welcome to Swagger Distribution!");

System.out.println("Today's date: " + calendar.getTime());

This code snippet now includes the welcome message as requested and modifies the date output to use the correct terminology. The functionality of key components in this code includes:

  • System.out.println: This method in Java is used to print text to the console. Each invocation sends a string to standard output (console).
  • Calendar.getTime(): This method calls the getTime function on a calendar object to retrieve the current date and time, ensuring that it displays dynamic data.
  • Semicolon: This symbol signifies the end of a statement in Java, indicating where one line of code ends and another begins.

Networking Configuration

Turning to the networking aspect of the project, the organization requires reliable connectivity between the warehouse and office areas, which can be achieved through both wired and wireless configurations. The existing wired network must be summarized while also designing a wireless alternative.

The wired network typically involves physical connections such as Ethernet cables linking computers and devices to a central switch or router, creating a robust and secure network. This configuration ensures high-speed internet access and reliable communications. Key aspects of the wired configuration include:

  • Network Switch: A device that connects multiple computers within the network.
  • Cabling: Physical cables that link all devices, ensuring data transmission strength.
  • Router: A hardware device that routes data from the central network to the Internet.

Alongside the wired configuration, a wireless setup is necessary to ensure flexibility, especially for mobile devices. The wireless network will employ routers and access points that allow devices to connect without physical cables. To illustrate this configuration, a basic network diagram will be created using Visio.

The wireless diagram will represent:

  • Wireless Access Point (WAP): A device that allows wireless communication between devices and the wired network.
  • Mobile Devices: Laptops and smartphones that connect to the WAP.
  • Labeling and Key Components: Each component in the diagram should be accurately labeled to enhance clarity, utilizing correct IT terminology.

Conclusion

In conclusion, by adapting the pop-up greeting for employees and enhancing the network configuration, Swagger Distribution Company can improve its IT infrastructure to better serve its operational needs. These changes not only improve user experience but also ensure that the network meets connectivity demands in an efficient and modern way.

References

  • Java Documentation. (n.d.). java.lang.System. Retrieved from https://docs.oracle.com/javase/8/docs/api/java/lang/System.html
  • Java Tutorials. (n.d.). Working with Dates and Times. Retrieved from https://docs.oracle.com/javase/tutorial/java/util/datetime/index.html
  • Network Fundamentals. (2020). Wired vs. Wireless Networking. Network World. Retrieved from https://www.networkworld.com/article/3544214/wired-vs-wireless-networking.html
  • Visio Templates. (n.d.). Basic Network Diagram. Microsoft. Retrieved from https://support.microsoft.com/en-us/office/create-a-basic-network-diagram-bd933af3-0be6-4128-b62e-1d92cab716e6
  • TechTarget. (n.d.). What is a network switch? Retrieved from https://www.techtarget.com/whatis/definition/network-switch
  • Gookin, D. (2016). Networking All-in-One For Dummies. Wiley.
  • Stallings, W. (2018). Data and Computer Communications. Pearson.
  • Forouzan, B. (2017). Data Communications and Networking. McGraw-Hill Education.
  • Kurose, J., & Ross, K. (2017). Computer Networking: A Top-Down Approach. Pearson.
  • Graham, L. (2020). A Guide to Creating a Wireless Network. Computer Weekly. Retrieved from https://www.computerweekly.com/feature/A-guide-to-creating-a-wireless-network