Sprint 2 Personal Blog
Sprint 2 Personal Blog
Summary Of My Learning
Variables:
A variable acts as a storage location for data, allowing a programmer to use and manipulate that data easily by referring to the variable name instead of the actual value.
Data Abstraction:
Data abstraction involves simplifying complex data structures by focusing only on the necessary details while underlying others. This allows programmers to work with data in a more efficient and understandable way, without needing to manage all the details of how the data is processed.
Mathematical Expressions:
Mathematical expressions are combinations of numbers, variables, and mathematical operators (such as +, -, *, or /) that produce a result when evaluated. In programming, these expressions are used to perform calculations, solve problems, and manipulate numerical data.
Strings:
A string is a sequence of characters used to represent text in programming. Strings can contain letters, numbers, and symbols, and are often used to store and manipulate textual data like words, sentences, or even entire paragraphs.
Booleans:
Booleans represent one of two possible values: true or false. In programming, boolean values are used to make decisions or control the flow of a program by evaluating conditions or expressions that result in a true or false outcome.
Conditionals:
Conditionals are statements in programming that allow decisions to be made based on whether a certain condition is true or false. If the condition is true, the program executes a specific block of code and if it is false, the program may execute a different block or skip the execution entirely.
Nested Conditionals:
Nested conditionals occur when one conditional statement is placed inside another. This allows for more complex decision-making processes, like evaluating multiple conditions. The program will first check the outer condition, and if it is true, it will then evaluate the inner condition.
Iteration:
Iteration is the process of repeatedly executing a block of code. This is typically done using loops, which allow a program to repeat a set of instructions a specified number of times or until a certain condition is met.
Lists:
A list is a data structure that stores multiple values in a single variable. Lists can contain any type of data, including numbers, strings, or even other lists. They allow programmers to organize and manage collections of data, making it easier to access, modify, or iterate over the values stored within them.
| Section | Link |
|---|---|
| 3.1 | Visit Section 3.1 |
| 3.2 | Visit Section 3.2 |
| 3.3 | Our lesson |
| 3.4 | Visit Section 3.4 |
| 3.5 | Our lesson |
| 3.6 | Visit Section 3.6 |
| 3.7 | Visit Section 3.7 |
| 3.8 | Visit Section 3.8 |
| 3.10A | Visit Section 3.9 |
| 3.10B | Visit Section 3.10 |
| Self Study | Visit Self Study |