Instructional Video18:12
3Blue1Brown

How to lie using visual proofs

12th - Higher Ed
Time stamps:

0:00 - Fake sphere
proof
1:39 - Fake pi
= 4 proof
5:16 - Fake proof that all triangle
s are isosceles
9:54 - Sphere
"proof" explanation
15:09 - p
i = 4 "proof" explanation
16:57 - Triangle "proof"...
Instructional Video20:27
Curated Video

Using for loops to iterate data structures

Pre-K - Higher Ed
Pupil outcome: I can use a for loop to inspect every element of a list. Key learning points: - Count-controlled iteration is implemented using for loops in Python. - The range() function can be used with a for loop to specify the number...
Instructional Video24:20
Curated Video

Building a program using control structures

Pre-K - Higher Ed
Pupil outcome: I can combine sequence, selection and iteration to build a program that uses complex conditions. Key learning points: - Expressions formed using logical operators evaluate to either True or False. - Logical and relational...
Instructional Video20:21
Curated Video

Count-controlled iteration

Pre-K - Higher Ed
Pupil outcome: I can use count-controlled iteration to repeat a sequence of commands a set number of times. Key learning points: - Iteration can be used to repeat sequences of commands in a program. - Condition-controlled iteration will...
Instructional Video24:31
Curated Video

Iteration using while loops

Pre-K - Higher Ed
Pupil outcome: I can use iteration to repeat sequences of code in a program and use a flag to stop a loop from running. Key learning points: - Condition controlled iteration will execute until a condition is met. - While loops are used...
Instructional Video29:04
Curated Video

Iterating through data structures

Pre-K - Higher Ed
Pupil outcome: I can use iteration to repeatedly add items to lists and check the contents of a string. Key learning points: - Condition-controlled iteration is implemented using while loops in Python. - A string is like a list in...
Instructional Video28:47
Curated Video

Building on composite functions

Pre-K - Higher Ed
Pupil outcome: I can expand my thinking on composite functions to consider a more efficient way to write composite functions comprised of many functions. Key learning points: - A composite function could be many iterations of one...
Instructional Video29:05
Curated Video

Evaluating iterative formulas

Pre-K - Higher Ed
Pupil outcome: I can evaluate and interpret iterative formula for various real-world situations. Key learning points: - Iterative formulae use the previous iteration's output for this iteration's input - A population can be estimated...
Instructional Video31:02
Curated Video

Approximating solutions to equations

Pre-K - Higher Ed
Pupil outcome: I can use iteration to find approximate solutions to equations. Key learning points: - You can rearrange an equation in order to carry out iteration - This process finds an approximate solution to the equation - This...
Instructional Video30:05
Curated Video

Signs of a solution

Pre-K - Higher Ed
Pupil outcome: I can deduce why a change of sign may indicate a solution. Key learning points: - If the value is a solution, then substituting it into the equation should mean the equation evaluates to 0 - Since the solution is an...
Instructional Video31:26
Curated Video

Problem solving with iteration

Pre-K - Higher Ed
Pupil outcome: I can use my knowledge of iteration to solve problems. Key learning points: - Quadratics can have their solutions estimated using iteration - This can be helpful to quickly determine where the solutions are likely to be -...
Instructional Video4:11
Curated Video

C++: NestedLoops

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video3:13
Curated Video

C++: ContinueBreak

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video3:26
Curated Video

C++: NestedLoop - Continue and Break

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video3:02
Curated Video

C++: Challenge yourself to print this Pattern

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video3:07
Curated Video

C++: Learn how to print stars in the reverse order

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video3:43
Curated Video

C++: Print Alternate Star Patterns

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video1:43
Curated Video

C++: Print and Sum Natural Numbers

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video3:00
Curated Video

C++: Nested- Loop Continue and Break Inner Loop

9th - Higher Ed
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Instructional Video8:35
Curated Video

C++ Array2D Init

9th - Higher Ed
Learn how to create and initialize a 2D array in C++.
Instructional Video5:56
Curated Video

Python Assignment 5

9th - Higher Ed
In this assignment, you are required to do the following: Prompt the user to enter the number of stars to be printed. Once the value is obtained, print a square of "stars" with each row and each column having the number of stars entered...
Instructional Video5:45
Curated Video

Python Lesson10

9th - Higher Ed
In this video, you will be introduced to the for-loop in Python. See how easy it is to get it done!
Instructional Video4:06
Curated Video

Python Lesson11

9th - Higher Ed
In this lesson, we see how we can set the start and step values for the range parameters. Want to be a Python Pro?
Instructional Video5:42
Curated Video

Python Lesson 12

9th - Higher Ed
We now look at Nested for-loops. Let's learn how the different loop counters change as we go through the code.