Posts

ITN100 Subnetting Lab

Image
  ITN100 Intro To Telecommunications - Subnetting Lab (Week 4) The following is my solution for this weeks (6/17/2024) lab created by Dr. EL Gbouri. Subnet Masks / Subnetting / IP Distribution 1.       What is a subnet and why do networks need them? Put simply, a subnet is a smaller network that’s part of a larger network. It’s a smaller segmentation of a larger network. It’s a logical division of the larger network at it may be done for several reasons. One would be as indicated in the premise statement for this question – for example a school. It might want to keep different departments divided up amongst themselves in a LAN. A business might want to create LAN for sales, admin, etc. 2.       What is a subnet mask? A subnet mask is a 32-bit number that helps a network router distinguish between a network address and a host address in IPv4. It tells your router which part of the ip address is used for the network by block...

ITP100 Software Design Capstone ATM Interface Project

Image
  ITP100 Software Design Capstone ATM Interface Project Here is my pseudo code outline for the capstone project: Things I had to look up: For this project there were a few items I was unfamiliar with and had to look up how to do. This list may not be all inclusive: First was this bit of code I used in my PIN verification method, the ("\\d+") -   if (!enteredPin.matches("\\d+"))   { System.out.println("Invalid input. Numbers only please."); I needed to find a way to ensure that user input for the pin number was a digit. Next was to convert it to an integer (so I could compare it to the variable I set for the actual pin) - int convertEnteredPin = Integer.parseInt(enteredPin);   Some fun bits of creativity that I enjoyed: I got creative in order to verify the data integrity entered by users for withdrawal transactions and reject bad data.                    double customerSavingsWithdrawalAmmount = scanner.next...

Test Post

Image
  Test Post Just a test post to make sure everything is working well with the DNS settings. I created this blog and put it on this subdomain to record and showcase the IT projects I've completed while pursuing a degree in cybersecurity.