Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
43 results
We have seen how to use for loops and while loops, but how do we choose which one to use? Also introducing the break and ...
462 views
5 years ago
An exception is a run time error. Find out the basics of catching them before they crash your program!
273 views
Writing an algorithm that finds a value in an array by looking at each item in term from beginning to end.
90 views
4 years ago
Loops - While Statement The while loop executes a block of code while a condition is true. while (condition) code to be executed;
3,597 views
11 years ago
This video takes you through the process of creating a V using asterisks on the console and nested loops. It also reviews ...
432 views
9 years ago
You use an if statement to make decisions about whether to take an action or not. You use an if/else statement to decide whether ...
133 views
When should you use braces around the body of an if/else? (Spoiler alert: always.)
538 views
In this course, our style guidelines tell you to *always* use braces with if statements. This video explains the problems you could ...
144 views
AP Computer Science A.
129 views
A walk-through of a simple nested for loop in JavaScript, using JSTutor. Visualize it yourself at https://goo.gl/vmb3xZ.
6,920 views
6 years ago
You can use a *cast* to take an integer variable and ask Java to treat it as a double (and vice versa). This video gives you the ...
225 views
while loop *Loop control statement *types of loop control statements *Introduction to while loop *syntax of while loop *Program ...
100 views
Up to now, our programs have been small. What is the process to use for developing a larger program? In this video, we'll plan a ...
115 views
How do you analyze a circuit with resistors in series and parallel configurations? With the Break It Down-Build It Up Method!
5,174,312 views
10 years ago
Learn how to declare, initialize, and iterate through arrays.
695 views
How to let users supply numeric input to your programs.
557 views
Learn about local variables, which “belong” to a function, and global variables, which are available to all functions.
250 views
7 years ago
Loops - Foreach Statement The foreach loop is used to loop through arrays. foreach ($array as $value) code to be executed;
633 views
Testing and debugging.
3,341 views
Learn about the +=, *=, (etc), ++ and -- operators.
323 views