2. IP Addressing – Study Guide

IP Addressing Basics – pg 50 symbolic names – DNS, humans prefer them, we think it’s easier to remember a string than a numeric address. Computers are the opposite, because they deal with network addresses in the form of bit patterns. logical numeric addresses consist of a set of four numbers separated by periods. physical […]

Hands-On Projects 2

Hands-On Project 2-3: Calculate the Subnet Mask for a Required Number of IPv4 Objective: Learn how to determine the subnet mask required to support a specific number of subnets on an IPv4 network using the GestióIP IPv4/IPv6 subnet calculator. Description: In this project, you use the GestióIP IPv4/IPv6 subnet calculator to define a range of […]

Linux Text Editors – Notes

Linux Text Editors Vi / Vim gEdit Nano gVim Eclipse Emacs Vi / Vim 2 Modes Command Mode – (Default) Talk to the editor. For instant command use “:” Insert Mode – i > hit escape to get out of insert mode Move the cursor j or <Return> – move cursor down one line k [or […]

WebAddress Console App

[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; /// <summary> /// ################# /// # Mark Hesser # /// # Dec 20, 2017 # /// # WebAddress # /// ############################################################################################# /// # Write a program named WebAddress that asks a user for a business name. Suggest a # /// […]

DisplayMultiplicationTable Console App

[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; /// <summary> /// ################################# /// # Mark Hesser # /// # Dec 20, 2017 # /// # DisplayMultiplicationTable # /// ######################################################################################### /// # Write an application named DisplayMultiplicationTable that displays a table of the # /// # products of every […]

DailyTemps Console App

[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; /// <summary> /// ################# /// # Mark Hesser # /// # Dec 20, 2017 # /// # DailyTemps # /// ##################################################################################################### /// # Write an application named DailyTemps that continuously prompts a user for a series # /// # of […]

Chapter 4 – Review Questions

Answer Questions 1-20 Programming Exercises Please write code for #4, #6, and #12. Create each on in it’s own solution file. Once down, combine all three solutions files into a Folder, zip and upload via link above.

First Exam – Study Guide

HFS Root File Structure bin – binary executables home – users home directory proc – processes dev – devices lib – 32 bit libraries (shared files aka dll) lib64 – 64 bit libraries (shared files aka dll) opt – optional software etc – configuration files ~ (Tilda) Home Directory . (dot) Current Directory .. (dot […]