Instructional Video10:02
Curated Video

Compound Sentences | Video Lessons

6th - Higher Ed
A video lesson teaching students to identify and write compound sentences. Lesson includes worksheet and activities. Download the lesson worksheet (see Link #1) before starting the lesson.
Instructional Video8:15
The Learning Depot

What is a Subject Complement: Predicate Nominative and Predicate Adjective

12th - Higher Ed
A subject complement is a word or phrase that follows a linking verb (called the copula) to connect the predicate to the subject. There are two types of subject complements: the predicate nominative which renames the subject and the...
Instructional Video9:11
Curated Video

Recognizing and Correcting Run-On Sentences

K - 5th
In this video, the teacher guides students through a lesson on recognizing and correcting run-on sentences. The teacher explains the components of a complete sentence, such as the subject and predicate, and demonstrates how to identify...
Instructional Video9:20
The Learning Depot

Noun Clauses: Advanced English Grammar | A Noun Clause is a Part of Speech Classed as a Noun

12th - Higher Ed


A subordinate or dependent clause that acts as a noun is called a noun (or substantive) clause. When a simple noun is not enough to represent a person, place, thing, or idea, we use a noun cl

ause.

A noun clause...
Instructional Video3:30
Curated Video

C++ Standard Template Library in Practice - Counting

Higher Ed
The listener is new to algorithms and does not know about the counting algorithms.

• Introduce the listener to the std::count algo
rithm
• Show how it works and explain the different versions
available
• Reinforce...
Instructional Video6:13
Curated Video

C++ Standard Template Library in Practice - Permutations

Higher Ed
The listener is new to algorithms and does not know about the permutation algorithms.

• Introduce the listener to the std::is_permutation, std::next_permutation, and std::prev_permutation algo
rithm
• Show how it works...
Instructional Video7:12
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 02 - Recursively List and Filter All Files and Folders in Directory

Higher Ed
In this session, we will learn about recursively list and filter all files and folders in directory.
r/>
This clip is from the chapter "Files and Directories" of the series "Java Programming for Complete Beginners - Java 16".In...
Instructional Video6:04
Curated Video

Advanced Swift 2 Application Development (Video 15)

Higher Ed
The number of smartphone users is increasing every single day, and as more and more of them are looking for new and interesting ways to improve their lives through mobile applications, the need for a language that will deploy on...
Instructional Video3:09
Curated Video

Multi-Paradigm Programming with Modern C++ - Manipulating Data

Higher Ed
Real-world programs manipulate data in numerous ways. You will need filtering, conversions, transformations, and so on. There is always a temptation to write a loop, but STL algorithms are preferable.

• How many ways are there...
Instructional Video5:24
Curated Video

C++ Standard Template Library in Practice - Sorting and Gathering - std::search

Higher Ed
The listener is new to algorithms and does not know about the search algorithms.

• Introduce the listener to the std::search algo
rithm
• Show how it works and explain the different versions
available
• Reinforce...
Instructional Video3:46
Curated Video

C++ 20 (2a) New Features - Composing Ranges

Higher Ed
We need to write a piece of code that filters out even numbers from a container and returns them multiplied by two. In other example we take n integers from container and compute their squares.

• Use views: filter and...
Instructional Video5:48
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 10 - Exploring New Java API - Predicate - not Method

Higher Ed
In this session, we will learn about the method, Predicate.not.
r/>
This clip is from the chapter "Java New Features - Java 10 to Java 16" of the series "Java Programming for Complete Beginners - Java 16".This section focuses...
Instructional Video8:15
Curated Video

Complete Modern C++ - Algorithms - Part I

Higher Ed
This video is an introduction to common algorithms.<br/<br/>>

This clip is from the chapter "Standard Template Library" of the series "Complete Modern C++".This section is the description of the standard template library.
Instructional Video20:21
Curated Video

C++ Programming By Example - Building a Sorting Application

Higher Ed
How to build a mini address book that is sortable by first name, last name, and phone number?

• Introduce std::pair and std::
tuple
• Create fake data for “p
hone book”
• Show how to use the std::sort function to...
Instructional Video5:58
Curated Video

C++ Standard Template Library in Practice - Copying

Higher Ed
The listener is new to algorithms and does not know about the copying algorithms.

• Introduce the listener to the std::copy algo
rithm
• Show how it works and explain the different versions
available
• Reinforce the...
Instructional Video6:04
Curated Video

C++ Standard Template Library in Practice - Searching and Finding - std::find

Higher Ed
The listener is new to algorithms and does not know about the finding algorithms.

• Introduce the listener to the std::find algo
rithm
• Show how it works and explain the different versions
available
• Reinforce the...
Instructional Video5:48
Curated Video

C++ Standard Template Library in Practice - Sorting and Gathering - std::partition

Higher Ed
The listener is new to algorithms and does not know about the partitioning algorithms.

• Introduce the listener to the std::partition algo
rithm
• Show how it works and explain the different versions
available
•...
Instructional Video8:51
Curated Video

C++ Standard Template Library in Practice - Sorting and Gathering - std::find_first_of, std::adjacent_find

Higher Ed
The listener is new to algorithms and does not know about the misc finding algorithms.

• Introduce the listener to the std::find_first_of, std::adjacent_find algo
rithm
• Show how it works and explain the different...
Instructional Video2:32
Curated Video

Complete Java SE 8 Developer Bootcamp - Predicate

Higher Ed
A predicate is a general functional interface that is provided by the Java SE API.
r/>
This clip is from the chapter "Lambda Expressions and Static Imports" of the series "Complete Java SE 8 Developer Bootcamp".In this section,...
Instructional Video8:27
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 13 - Behind the Screens with Functional Interfaces - Implement Predicate Int

Higher Ed
In this session, we will learn about behind the screens with functional interfaces - implement predicate Int.
r/>
This clip is from the chapter "Introduction to Functional Programming" of the series "Java Programming for...
Instructional Video4:51
Curated Video

C++ Standard Template Library in Practice - Removing

Higher Ed
The listener is new to algorithms and does not know about the removing algorithms.

• Introduce the listener to the std::remove algo
rithm
• Show how it works and explain the different versions
available
• Reinforce...
Instructional Video3:30
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 17 - Functions are First Class Citizens

Higher Ed
In this session, we will learn about functions are first class citizens.
r/>
This clip is from the chapter "Introduction to Functional Programming" of the series "Java Programming for Complete Beginners - Java 16".In this...
Instructional Video3:10
Curated Video

C++ Standard Template Library in Practice - Replacing and Transforming - std::replace

Higher Ed
The listener is new to algorithms and does not know about the replacement algorithms.

• Introduce the listener to the std::replace algor
ithms
• Show how it works and explain the different versions
available
•...
Instructional Video3:00
Curated Video

C++ Standard Template Library in Practice - Sorting and Gathering - std::partition_copy

Higher Ed
The listener is new to algorithms and does not know about the partition_copy algorithms.

• Introduce the listener to the std::partition_copy algo
rithm
• Show how it works and explain the different versions
available
...