ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

387 results

Meri (Engel) Kasprak - programming videos
If and While in Java

Using if, if else, and while statements in Java.

4:29
If and While in Java

186 views

8 years ago

J David Eisenberg
Chapter 4: Using a Boolean to control an input loop

In a preceding video, we had duplicated code to read the user input outside the loop and inside the loop. To avoid duplicated ...

3:38
Chapter 4: Using a Boolean to control an input loop

387 views

4 years ago

J David Eisenberg
Chapter 6: The do/while loop

The do/while loop is guaranteed to execute the loop body at least once.

2:02
Chapter 6: The do/while loop

226 views

4 years ago

Confreaks
RailsConf 2017: The Arcane Art of Error Handling by Brad Urani

RailsConf 2017: The Arcane Art of Error Handling by Brad Urani With complexity comes errors, and unexpected errors lead to ...

36:07
RailsConf 2017: The Arcane Art of Error Handling by Brad Urani

2,284 views

8 years ago

J David Eisenberg
Chapter 3: if and if/else statements

Learn about conditional statements.

5:37
Chapter 3: if and if/else statements

344 views

6 years ago

J David Eisenberg
Chapter 5: The while loop

Introduction to loops, with the *while* loop, which continues as long as a condition is true.

3:23
Chapter 5: The while loop

361 views

6 years ago

YAWL User Group
The Godfather on YAWL: 20 Years of Open-source BPMS

Wil van der Aalst, co-creator of the Business Process Management System YAWL and the inventor of Process Mining, talks about ...

43:36
The Godfather on YAWL: 20 Years of Open-source BPMS

492 views

2 years ago

J David Eisenberg
Chapter 6: Method Calls

What's going on behind the scenes when you call a method in Java?

2:32
Chapter 6: Method Calls

421 views

6 years ago

codingjerk
Zig is better than Rust (sometimes)

Since I use both Rust and Zig, I've collected some use cases, where I prefer Zig over Rust. While it's not an objective comparison, ...

20:21
Zig is better than Rust (sometimes)

91,483 views

6 months ago

J David Eisenberg
Chapter 5: Using a while to get input

Use a *while* loop to repeatedly get input in a program.

3:21
Chapter 5: Using a while to get input

312 views

6 years ago

J David Eisenberg
Chapter 6: The for loop

The for loop is a shorthand for a while loop; it specifies the initial loop variable, the continuation test, and the action after each ...

3:04
Chapter 6: The for loop

260 views

4 years ago

Pinceladastic
🛠️ Crea las Operaciones Generadoras en Pilas Dinámicas con Java Paso a Paso 🚀

En este video aprenderás a implementar las operaciones generadoras de una pila dinámica en #Java, centrándonos en los ...

5:58
🛠️ Crea las Operaciones Generadoras en Pilas Dinámicas con Java Paso a Paso 🚀

27 views

6 months ago

J David Eisenberg
Chapter 12: Using Exceptions

Learn when to use -- and not to use -- exceptions.

4:14
Chapter 12: Using Exceptions

170 views

5 years ago

J David Eisenberg
Chapter 4: Overloaded Methods

You can have multiple methods with the same name as long as the number and/or types of the parameters is different.

3:34
Chapter 4: Overloaded Methods

446 views

4 years ago

J David Eisenberg
Chapter 3: Nested if statements

You can put an if inside an if block, or an if inside an else block. This video explains how it works.

6:40
Chapter 3: Nested if statements

219 views

6 years ago

J David Eisenberg
Chapter 4: Using loops for user input

A while loop lets your programs repeatedly ask for user input until they enter a “sentinel value” to tell you they have finished.

3:26
Chapter 4: Using loops for user input

206 views

4 years ago

J David Eisenberg
Chapter 9: Passing Objects to Methods

When you pass an object to a method, you are passing a copy of the *reference* to that object. That lets you update an object's ...

2:07
Chapter 9: Passing Objects to Methods

1,013 views

6 years ago

Pinceladastic
#Implementación de la Interfaz #Pila mediante la Gestión de Memoria Dinámica en #Java

Continuemos el aprendizaje de Pilas en Java! En este video, vamos a ver cómo implementar en Java, la interfaz Pila usando ...

7:58
#Implementación de la Interfaz #Pila mediante la Gestión de Memoria Dinámica en #Java

43 views

7 months ago

J David Eisenberg
Chapter 3: Multi-way if/else statements

Nesting if/else statements to test multiple conditions -- and a convenient shortcut for writing such statements.

4:48
Chapter 3: Multi-way if/else statements

2,016 views

6 years ago

J David Eisenberg
Chapter 6: break and continue

The break statement lets you exit a loop from the middle; the continue statement takes you to the next iteration of a loop. This is ...

4:21
Chapter 6: break and continue

171 views

4 years ago