Instructional Video11:15
Khan Academy

SOPA and PIPA

9th - 12th Standards
Your learners will be very interested to learn about the Stop Online Piracy Act and how copyright infringement was challenged by a bill introduced into the United States Congress in 2012. The video provides an overview of the the bill's...
Instructional Video7:30
Khan Academy

Illinois Pension Obligations

9th - 12th Standards
Impress upon your young citizens and economists the issues at stake with underfunded pension plans, which are projected to cut into very important areas of investment, such as education, in order to fund the appropriate liabilities. This...
Instructional Video10:07
Khan Academy

Pension Obligations

9th - 12th Standards
Discover the major implications of pensions on the current financial condition of many states in the United States. This video walks through a detailed comparison of a defined benefit plan versus a contribution plan,...
Instructional Video7:14
Khan Academy

PPACA or "Obamacare"

9th - 12th Standards
Using illustrations and sample figures, this video very clearly explains the arguments for and against components of the Affordable Care Act, or Obamacare, such as the controversial issue of an individual mandate and how pre-existing...
Instructional Video
Khan Academy

The Fiscal Cliff

9th - 12th Standards
What is the fiscal cliff, what does it imply, and why are some people fearful of it? This video uses President Obama's proposed budget proposal of 2013 and that of republicans to provide a context for understanding the fiscal cliff. The...
Instructional Video
Khan Academy

More Fiscal Cliff Analysis

9th - 12th Standards
Continuing from a previous video explaining the various budgetary proposals of 2013 in the United States, this video illustrates a more in-depth analysis of the fiscal cliff. It reviews complex concepts such as the pros and cons of...
Instructional Video8:13
Khan Academy

Primaries and Caucuses

9th - 12th Standards
What is the difference between a primary and a caucus? Why does the Iowa caucus and New Hampshire primary get so much attention? Watch as this presenter explains this detailed and varied process of electing candidates that will head to a...
Instructional Video
Khan Academy

Social Security Intro

9th - 12th Standards
Here is an excellent breakdown of what Social Security is in the United States, including its purpose, benefactors, sources of income, and areas of investment. The video compares a traditional retirement account with Social Security, and...
Instructional Video10:32
Khan Academy

Government's Financial Condition

9th - 12th Standards
What goes into accounting the United States budget deficits and its net operating costs? How do shifts in the economy affect government spending? How is increasing interest projected to affect our federal debt in the future? This video...
Instructional Video7:30
Khan Academy

FICA Tax

9th - 12th Standards
What is the Federal Insurance Contributions Act (FICA) tax's connection to Social Security and Medicare, and what are the differences in how are individuals in the United States are taxed relative to their income? This video provides...
Instructional Video7:52
Khan Academy

Medicare Sustainability

9th - 12th Standards
How is Medicare and Medicaid funded in the United States? Building off of a previous video discussing the structure of Social Security in the country, this resource explains the current situation with regard to a shrinking Medicare trust...
Instructional Video8:49
Khan Academy

Species

6th - 12th
How are living organisms grouped? In this eight-minute video clip, the system of grouping them according to similarities and relationships is broken down straightforwardly. Sal explains the definition of species and how they must be able...
Instructional Video6:24
Khan Academy

Intro to Drawing

5th - Higher Ed
Leap right into programming in JavaScript with this first video in the series. Start off with drawing a rectangle. Remember computers only know what you tell them. So you need to specify exactly where on the screen you want the...
Instructional Video
Khan Academy

The Agricultural Revolution

6th - 12th Standards
Rather than simply define the agricultural revolution, invite your learners to consider the advantages and disadvantages that agriculture has brought to humanity as a whole. John Green begins this first episode of this series by...
Instructional Video6:12
Khan Academy

Arrays of Objects, Intro to JS: Drawing & Animation, Computer Programming

6th - Higher Ed
Expand your beginning coder's use of objects in programs by looking at examples where you can change code to define and use objects in arrays and pass objects as parameters to a function. All of this leads to a deeper understanding of...
Instructional Video5:51
Khan Academy

Modifying Arrays, Computer Programming

6th - Higher Ed
An instructional video combines arrays, loops, and mouse clicks. The author shows how to modify JavaScript code to add a balloon each time the mouse is clicked. The video also shows two different ways to add to the end of the array: one...
Instructional Video5:22
Khan Academy

Looping Through Arrays, Computer Programming

6th - Higher Ed
In computer programming, loops and arrays are made for each other. This video describes adding a while loop to print out each element in an array and then doing the same procedure using a for loop.
Instructional Video4:54
Khan Academy

Modifying Objects, Computer Programming

6th - Higher Ed
Similar to using variables, object properties can be changed in the program. However, you can also dynamically add new properties while the program runs. The video shows how to define an object, use an object property, change an object...
Instructional Video5:26
Khan Academy

Intro to Objects, Computer Programming

6th - Higher Ed
When you introduce objects and object-oriented programming to your coding students, you are starting them on an important path. This introductory video shows how to replace the use of many variables with the use of a single object...
Instructional Video5:00
Khan Academy

Intro to Arrays, Computer Programming

6th - Higher Ed
Explore more cool programming features by learning how to use arrays in JavaScript code to tackle lists or sequences through a single variable. This video introduces arrays and specifically shows how they are defined and used.
Instructional Video6:07
Khan Academy

For Loops! A New Kind of Loop, Computer Programming

6th - Higher Ed
Now that you are familiar with while loops let's look at a new type of loop: the for loop. This video shows the three parts of the for loop: the start, the Boolean test, the value change, and how it differs from a while loop.
Instructional Video6:00
Khan Academy

Nested For Loops, Computer Programming

6th - Higher Ed
A loop within a loop is called a nested loop. It expands the repeating code based on two different variables. The video shows an example of drawing an image across and down a screen.
Instructional Video4:46
Khan Academy

Intro to While Loops, Computer Programming

6th - Higher Ed
Repetitive tasks, like the scenes from the movie Ground Hog Day, are common in computer programs. But how exactly do you program a piece of code to repeat specific instructions? This is where the While loop comes in handy. This video...
Instructional Video5:53
Khan Academy

If/Else - Part 2, Computer Programming

6th - Higher Ed
This is the second part of the introductory video on the if statement. It looks specifically at the else if clause in JavaScript code. Two examples are shown: one where the options are mutually exclusive and could have been programmed...