Instructional Video1:55
Curated Video

C++ Developer - Section Wrap-Up - Control Statements

Higher Ed
This video presents a summary of the course. This clip is from the chapter "Control Statements" of the series "The Complete C++ Developer Course".This section focuses on control statements and explains how to use them.
Instructional Video3:07
Curated Video

Develop a computer program to solve a problem using control structures : While Loops

Higher Ed
From the section: Python Crash Course. In this section, the author covers Python and provides a crash course on this. Python Crash Course: While Loops
Instructional Video5:09
Curated Video

Mastering Swift 2 Programming (Video 14)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video3:27
Packt

Bubble Sort Complexity

Higher Ed
This video focuses on bubble sort complexity. This clip is from the chapter "Algorithm: Sorting Elementary" of the series "Data Structures and Algorithms: The Complete Masterclass".This section introduces you to sorting elementary.
Instructional Video1:29
Curated Video

Describe computer programming : The Course Overview

Higher Ed
From the section: Introduction to Python. In this section we look at Python's fundamental, built-in data structures, and discuss how and when to use them. This video will give you an overview about the course.
Instructional Video17:52
Curated Video

C++ Developer - Repetition Control Statements

Higher Ed
This video explains the repetition control statements. This clip is from the chapter "Control Statements" of the series "The Complete C++ Developer Course".This section focuses on control statements and explains how to use them.
Instructional Video4:28
Fun Robotics

Loops in Python

Higher Ed
Defining different types of loops in Python programming
Instructional Video14:32
Curated Video

Multi-Paradigm Programming with Modern C++ - Synchronization with Atomics

Higher Ed
Even something as simple as an integer is not immune from data races. Atomics can solve this problem. They are often implemented at hardware level, and C++ provides an API. In this video, we will learn how to use atomics. • Introduction...
Instructional Video4:28
Curated Video

Multi-Paradigm Programming with Modern C++ - Application Binary Interface

Higher Ed
Sometimes we want to share a package, without sharing its source code. And sometimes we want to push updates to our shared libraries, without requiring that customers re-build their applications. This requires a stable application binary...
Instructional Video6:09
Curated Video

Multi-Paradigm Programming with Modern C++ - On Development Tools

Higher Ed
You only need a compiler and a text editor to begin working with C++. Professional development requires more tools. This video provides an overview of the most important ones. • Hardware and build acceleration • Version control,...
Instructional Video7:28
APMonitor

Matlab 👩‍💻 Course Overview

10th - Higher Ed
Imagine that you work for an organization that rescues orphaned birds. Often you have to hatch eggs left without a nest. Egg incubation is tricky business. To incubate a chicken egg you have to keep it at just the right temperature. One...
Instructional Video16:14
APMonitor

Java ☕ Loops

10th - Higher Ed
I recently wrote a computer program to solve Sudoku puzzles. As part of the program, I needed to the computer to check every empty box on the grid. Sudoku is played on a 9 by 9 grid. That means I would have to check 81 times. It wouldn't...
Instructional Video4:53
Packt

How Does the While Loop Work?

Higher Ed
This video explains how to write the While loop. This clip is from the chapter "Java Object Oriented Programming System (OOPS) Basic for Selenium Part - 1" of the series "Selenium WebDriver with Java - Basics to Advanced and...
Instructional Video6:06
Catalyst University

Cranial Nerve IV - Trochlear Nerve | Origin, Structure, Pathway & Function

Higher Ed
In this video, we explore the following as it pertains to cranial nerve IV, the trochlear nerve: Origin Anatomy Functions Pathway to the eye
Instructional Video7:49
Curated Video

Multi-Paradigm Programming with Modern C++ - Coroutine Mechanics

Higher Ed
In order to be able to implement coroutines, we have to understand a few low-level mechanisms. This video is an overview of how process memory is structured, how functions are called, and finally, how coroutine state is copied from the...
Instructional Video8:11
Curated Video

Multi-Paradigm Programming with Modern C++ - Compile-Time Evaluation Using constexpr

Higher Ed
Some expressions can be evaluated during compilation. This lets us improve performance, and also compute constants, which improves code readability. • About constant expressions • What code can become a constexpr? • Live coding: instant...
Instructional Video7:56
Curated Video

Multi-Paradigm Programming with Modern C++ - Going Functional

Higher Ed
Why use function objects together with instead of loops? How to write great lambda expressions easily, and how to master the capture block. • Implementing search with a simple loop and with an algorithm • Mastering the capture block •...
Instructional Video6:01
Curated Video

Multi-Paradigm Programming with Modern C++ - Managing Memory

Higher Ed
Classes in a hierarchy are almost always allocated on the heap. Managing memory manually is error prone. STL provides a set of smart pointers that make the task easier. • About RAII design pattern • Why prefer smart pointers to raw...
Instructional Video3:09
Curated Video

Multi-Paradigm Programming with Modern C++ - What Makes a Good Interface

Higher Ed
Application programming interfaces are to programmer what UI is to the end user. Creating good interfaces improves modularity and promotes code reuse. • What is an API and why we need it? • What makes a good API? • How to design a good...
Instructional Video3:44
Fun Robotics

Nested Loops in Python

Higher Ed
Exploring the functionality of nested loops in Python programming
Instructional Video12:35
Packt

Practice Exercise on Loops -1 (Printing Pyramid Triangle)

Higher Ed
This video presents an example on printing a pyramid triangle. This clip is from the chapter "Java Object Oriented Programming System (OOPS) Basic for Selenium Part - 1" of the series "Selenium WebDriver with Java - Basics to Advanced...
Instructional Video5:37
Python Programmer

EDA Python - 09-1_while_Loops

Higher Ed
Loops are another important part of programming. In this section we will explore while loops in python.
Instructional Video5:21
Curated Video

Multi-Paradigm Programming with Modern C++ - Instantiating the Template

Higher Ed
When we use a template, we instantiate it. Let’s create a type that performs fixed-point arithmetic, parameterized with templates. Then let’s support that type in our math library • Developing a fixed-point math class • Adding arithmetic...
Instructional Video5:27
Curated Video

Multi-Paradigm Programming with Modern C++ - Arguments and Return Values

Higher Ed
How many arguments should a function have, and how to pass them properly? There are simple ways for making the functions even better. • How many arguments? • Passing by value, by reference and by pointer • Return values and other tips...