.. | ||
example.js | ||
example.py | ||
README.md |
Core Elements of a Program
This lecture covers the building blocks of straight line and branching programs: objects, types, operators, variables, execution, and conditional statements.
Session Activities
➭ Lecture 2: Core Elements of a Program (00:49:49)
➭ About this Video: Topics covered: IDLE, types of objects, operators, overloading, commands, variables, assignment, input, straight line and branching programs, looping constructs, Turing completeness, conditionals, nesting.
➭ Resources
Check Yourself
What is a type?
Type are classifications of objects, which is what Python, as an OOP language, deals with. They determine how those objects are dealt with (for example, adding two integers results in an integer, two strings results in a concatenated string, and on integer and a string results in an error).
What is an 'expression'?
An expression is composed of objects (or operands) and operators, and can be interpreted into a value.