Essay 2 – Final

Download Essay 2 PDF The best thing I’ve learned so far at South Hills is programming, from the Introduction to Programming and Logic course. This course has introduced me to a new way of thinking about logic and a better understanding of how programs work. It has helped me learn new coding languages and helped […]

Chapter 5 Study Guide

TCP/IP’s Layered Architecture (p208) When a set of protocols works cooperatively, it’s called a protocol stack or protocol suite. The most common protocol stack is Transmission Control Protocol/Internet Protocol (TCP/IP), the Internet protocol suite. Role of Network Access Layer (p213) Provides a physical (MAC) address for the network interface. Verifies that incoming frames have the […]

How to Install Mac OS X El Capitan on VMware on PC

It is now possible and remarkably easy to use OS X El Capitan on VMware following Apple’s live changing move geared towards improving its OS X software for desktop operating system. Mac OS El Captain was publicly launched on Wednesday the 30th of September last year. This tutorial provides a clear and systematic guideline with […]

Error Handling

[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ErrorHandling { class Program { static void Main(string[] args) { //input problem 1 //Declarations byte value = 0; bool tryagain = true; //try loop while tryagain is true while (tryagain) { Console.Write("Enter a Number Between 0 and 255: "); try //try to […]

20 Scientifically Backed Ways To De-Stress Right Now

What’s your stress “tell?” For some, a quickened heart rate or a slight feeling of queasiness is enough to let them know they’re getting anxious or overwhelmed. But just as a slight from your boss or bad news from a family member can get your stress hormones pumping and your blood pressure rising quickly, you […]

Programming Problems

[code language=”csharp”] /* Mark Hesser Nov 3, 2017 Intro to P&L Programming Problems */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Programming_Problems { class Program { static void Main(string[] args) { bool Quit = false; //Declarations bool[] program = new bool[8] { true, false, false, false, false, false, false, false }; […]