An Intro to Programming – Using Controls
An Intro to Programming – Handling Events
An Intro to Programming – Files and Streams
An Intro to Programming – Glossary
An Intro to Programming – Index
Creating a Class – Video
Hands-On Project 4-1
Please complete the HOP 4-1 exercise , using the class PC. To identify your motherboard and find out the processor and processor socket a motherboard is currently using, you can use UEFI/BIOS setup, Windows utilities, or third-party software such as Speccy at www.periform.com/speccy. To research processors a board can support, you can use the motherboard […]
Greenville MidTerm Grade A
[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 # /// # Jan 30, 18 # /// # GreenvilleRevenue # /// # # # # # # # # # # […]
Debug Exercises – Fixed
DebugEight1 [code language=”csharp”] // GetData() method accepts order number and quantity // that are used in the Main() method // Price is $3.99 each using System; using static System.Console; class DebugEight1 { static void Main() { int orderNum = 0, quantity = 0; double total; const double PRICE_EACH = 3.99; GetData(ref orderNum, ref quantity); total […]