4 min read
CPE263 Summary
Summary
Timer is used to execute a method or perform an action at specific intervals, either once or repeatedly.
In C#, a method is a block of code that performs a specific task and can be called upon when needed. Methods help organize code and avoid redundancy.
ASCII (American Standard Code for Information Interchange) is a character encoding standard that represents text in computers and communication equipment.
In C#, an array is a collection of items stored at contiguous memory locations. It can hold multiple values of the same type.
This homework assignment will cover the basic looping constructs in C#: for, while, and do-while loops.