Instructional Video11:19
Crash Course

Programming Basics: Statements & Functions: Crash Course Computer Science

12th - Higher Ed
Today, Carrie Anne is going to start our overview of the fundamental building blocks of programming languages. We’ll start by creating small programs for our very own video game to show how statements and functions work. We aren’t going...
Instructional Video11:41
Curated Video

The Art of Doing - Web Development for Beginners - Course Introduction

Higher Ed
In this video, we will provide an overview of the course and what you can expect to learn. This clip is from the chapter "Introduction" of the series "The Art of Doing - Web Development for Beginners".In this section, we will introduce...
Instructional Video24:45
Curated Video

The Art of Doing - Web Development for Beginners - Final Project Part 5

Higher Ed
In this video, we will work on the pricing and sizing pages of our project, adding important features and functionality to make our web application more user-friendly and engaging. Join us as we polish our project and make it shine! This...
Instructional Video3:53
Curated Video

Behavioral Design Patterns in C++ - Pros and Cons-Strategy Pattern

Higher Ed
This video talks about the pros and cons of the strategy pattern. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the strategy pattern.
Instructional Video6:22
Curated Video

Behavioral Design Patterns in C++ - Dynamic Array - IV

Higher Ed
This video explains how to use the dynamic strategy to decide the thread-safety for the array class. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the...
Instructional Video6:38
Curated Video

Behavioral Design Patterns in C++ - Spreadsheet Application - III

Higher Ed
In this third video of the series, we will try to replace conditional statements with inheritance and see if it works. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will...
Instructional Video5:32
Curated Video

Behavioral Design Patterns in C++ - Introduction-State

Higher Ed
This video provides an introduction to the State design pattern and helps find the state of the object. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This section focuses on the State design...
Instructional Video2:20
Curated Video

Behavioral Design Patterns in C++ - Methods for States - I

Higher Ed
This video demonstrates another approach—methods for state approach that can be implemented in the State design pattern. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This section focuses on...
Instructional Video11:17
Curated Video

Deep Learning - Computer Vision for Beginners Using PyTorch - Conditional Statements in Python - if

Higher Ed
In this video, you will learn about the "If" conditional statement and how to implement it. This clip is from the chapter "Optional Learning - Python Basics" of the series "Deep Learning - Computer Vision for Beginners Using PyTorch".In...
Instructional Video5:47
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Arrays and the Split Function

Higher Ed
This video explains the split function where the string will be split into substrings using a delimiter. This clip is from the chapter "Arrays" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This video explains...
Instructional Video7:19
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Multidimensional Arrays

Higher Ed
This video explains multidimensional arrays, which are made by adding a comma after the first number between round brackets of your array name, then adding another number. This clip is from the chapter "Arrays" of the series "The...
Instructional Video7:42
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Cell Property

Higher Ed
This video explains the Cell property used to reference the cells on your spreadsheets. This clip is from the chapter "Loops with VBA" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains loops...
Instructional Video4:56
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Logical Operators

Higher Ed
This video explains logical operators in VBA such as AND, OR, NOT. This clip is from the chapter "VBA Conditional Statements" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains the various...
Instructional Video3:56
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Message Box

Higher Ed
This video explains the message box or the msg box in Excel VBA. This clip is from the chapter "Subs and Functions" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains subs and functions in VBA.
Instructional Video2:29
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Subroutines

Higher Ed
This video explains a subroutine, which is a piece of code that performs a specific task described in the code but does not return a result or value. This clip is from the chapter "Subs and Functions" of the series "The Ultimate Excel...
Instructional Video3:47
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Arrays and Loop

Higher Ed
This video explains how to store some numbers in an array and then use a loop to print the amount of cells in the spreadsheet. This clip is from the chapter "Arrays" of the series "The Ultimate Excel VBA Course - Learn and Master VBA...
Instructional Video3:24
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Arrays

Higher Ed
This video explains arrays where you can store more than one value under the same name. This clip is from the chapter "Arrays" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This video explains arrays, loops,...
Instructional Video5:48
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Do Loop

Higher Ed
This video explains the Do Loop that allows the user to repeat a certain process in a macro. This clip is from the chapter "Loops with VBA" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains...
Instructional Video2:42
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - For Each Loop

Higher Ed
This video explains the For Each loop that is normally used with collections and arrays, which helps you run one or more loops to cycle through. This clip is from the chapter "Loops with VBA" of the series "The Ultimate Excel VBA Course...
Instructional Video4:51
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - For Loop

Higher Ed
This video explains the For loop that enables you to loop through a range of cells with just a few codes lines until the condition is met, and the code moves onto the next line of code. This clip is from the chapter "Loops with VBA" of...
Instructional Video3:43
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - String Exercise

Higher Ed
This video explains an exercise where you have a product code on a spreadsheet that is in the wrong format, and you have been given certain conditions as to how the output should look like after applying all you have learnt in this...
Instructional Video2:22
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Mid Function

Higher Ed
This video explains the mid function, which is used to grab characters from a string of text; it has three parts: the string to search, the starting position, and the number of characters to grab. This clip is from the chapter "String...
Instructional Video5:28
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - The Left and Right Functions

Higher Ed
This video explains the left and right functions, which will help us chop a string. The left function will help chop the characters from the start of the string and the right function will help chop the character from the end of the...
Instructional Video3:22
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - InStr, InStrRev, and StrReverse

Higher Ed
This video explains Instr and InstrRev, where Instr is looking from the start to the end, while InstrRev is looking from the end of the string to the beginning. The StrReverse returns a string by reversing the original string supplied....