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
72 results
In a preceding video, we had duplicated code to read the user input outside the loop and inside the loop. To avoid duplicated ...
388 views
5 years ago
The do/while loop is guaranteed to execute the loop body at least once.
298 views
6 years ago
A brief description of what the Java compiler is on about.
951 views
Creating your first class and instantiating objects from it in Java.
96 views
8 years ago
What's the “correct“ way to indent? Where should you put braces in your code? All of this is part of a Java programming style ...
1,817 views
Introduction to loops, with the *while* loop, which continues as long as a condition is true.
361 views
A while loop lets your programs repeatedly ask for user input until they enter a “sentinel value” to tell you they have finished.
206 views
Calculating days until the user's next birthday.
636 views
In Java, you can have a two-dimensional array where each row has a different number of elements. This is called a ragged array.
2,982 views
265 views
4 years ago
These videos were made for DiscoverE's second MOOC, Intro to App Design, which was released in October 2015. This is a free ...
98 views
10 years ago
Learn when to use System.out.print() and when to use System.out.println().
2,137 views
Here are two approaches to solving the problem. (I'm not entirely happy with this video; the script just didn't seem to “click” for me, ...
421 views
3 years ago
How to pass arrays to methods and return arrays as results.
296 views
Some decision structures require you to put if statements inside if statements. That's called a “nested if” statement.
109 views
You can use booleans in the condition of a while loop. This will avoid duplicate code in a loop that asks for user input.
246 views
Let's take the program from the preceding video and add a function that displays the information in a food structure. We'll call this ...
221 views
This video demonstrates how to: 1 Add a Tree View; 2 Apply settings to it. #dashboards #analytics #js #designer You can find ...
516 views
You can do multiple initializations and iteration actions within a for loop. Here's how it works.
331 views
Guidelines for giving your variables meaningful names.
732 views