August
-I can describe computer storage and data types
-construct and analyze algorithms and flowcharts to solve programming problems
-incorporate error handling into into applications or modules
-construct and analyze code based on functional programing patterns
I can Create a simple program with predefined numbers of days that converts into equivalent hours, minutes and seconds
Im Using Int variables and clearly defining them for clear code. I decided upon Int since it represents whole numbers which makes it ideal since ill be converting days, hours , minutes etc using integers simplifies calculations
Algorithm
Input the number of days Prompt the user to enter a whole number representing days.
Calculate total hours Multiply the number of days by 24.
Calculate total minutes Multiply the total hours by 60.
Calculate total seconds Multiply the total minutes by 60.
Print the results Display the original number of days along with the calculated hours, minutes, and seconds.
I can better understand events and delegates
Events are happenings like mouse clicks and window openings. events trigger actions also known as methods.
Delegates protect functions that should not be exposed in code to others
A delegate allows one to tap into a method without refrencing a class itself, which can be useful if its marked as private