Exam 98-361: Software Development Fundamentals/Understanding Core Programming
This lesson covers Understanding Core Programming. It looks at storage and data types, decision structures, repetition, and error handling.
Activity 1 - Understand Computer Storage and Data Types
editThis objective may include but is not limited to: how a computer stores programs and the instructions in computer memory; memory stacks and heaps; memory size requirements for the various data storage types; numeric data and textual data.
- Read Bits & Bytes: Lesson 3.
- Read Types.
- Read Elementary Data Types.
Activity 2 - Understand Computer Decision Structures
editThis objective may include but is not limited to: various decision structures used in all computer programming languages; If decision structures; multiple decision structures such as If…Else and switch/Select Case; reading flowcharts; decision tables; evaluating expressions.
- Read C# Language Specification.
- Read Nested Control Structures.
Activity 3 - Identify the Appropriate Method for Handling Repetition
editThis objective may include but is not limited to: For loops, While loops, Do..While loops, and recursion.
- Read Iteration Statements.
Activity 4 - Understand Error Handling
editThis objective may include but is not limited to: structured exception handling.