Hangman Console App

[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Media; using static System.Console; /// <summary> /// # # # # # # # # # # # # # /// # Mark Hesser # /// # Jan 9, 2018 # /// # Hangman Console App # /// # # # # […]

Hands-On Projects 3-1

Description: This project shows you how to capture packets on a network, select a specific packet, and examine the IPv4 header data for the packet. You may capture your own data to analyze, or you may start Wireshark, open the ch03_IPv4Fields.pcapng file available from the Student Companion Web site, and skip to Step 8. Start […]

Hangman

Create a game similar to Hangman  in which a player guesses letters to try to replicate a hidden word.  Be sure to use the following criteria. Store at least eight words in an array [each word should be 5 or more characters] Randomly select one to be the hidden word. Initially, display the hidden word […]

IPv6 Datagram Main Header Format

As we saw in the previous topic, IPv6 datagrams use a structure that includes a regular header and optionally, one or more extension headers. This regular header is like the header of IPv4 datagrams, though it has a different format, as we will see shortly. The standards don’t give this header a name; it is […]

IPv6 Motivation and Overview

“If it ain’t broke, don’t fix it.” I consider this one of my favorite pieces of folk wisdom. I generally like to stick with what works, as do most people. And IP version 4 works pretty darned well. It’s been around for decades now and has survived the growth of the Internet from a small […]

IP Datagram General Format

Data transmitted over an internet using IP is carried in messages called IP datagrams. Like all network protocol messages, IP uses a specific format for its datagrams. We are of course looking here at IP version 4 and so we will examine the IPv4 datagram format, which was defined in RFC 791 along with the […]