Instructional Video3:24
Curated Video

Variance and Standard Deviation

3rd - Higher Ed
A video entitled “Variance and Standard Deviation” which describes ways that variance and standard deviation are used as measures in the real world.
Instructional Video6:23
Curated Video

Understanding the Correlation between Obesity and Type 2 Diabetes

Higher Ed
This video provides an explanation of type 2 diabetes and its correlation with obesity. It discusses the rise in type 2 diabetes diagnoses and obesity rates in many countries, and highlights excess body fat as the strongest risk factor...
Instructional Video4:17
Curated Video

Calculating Probability: Understanding Fractions, Decimals, and Percentages

K - 5th
In this video, the teacher explains how to calculate the probability of selecting a green marble from a bag of marbles that is 1/3 blue and the rest green. The teacher demonstrates how to represent fractions, decimals, and percentages on...
Instructional Video9:27
Curated Video

Multi-Paradigm Programming with Modern C++ - More Range Examples

Higher Ed
Everything you can do with loops and algorithms; you can also do with ranges. Thanks to lazy evaluation of views, the code becomes more functional, and often more compact.

• Returning ranges from func
tions
• Creating a...
Instructional Video3:40
Curated Video

C++ 20 (2a) New Features - Rationale Behind New Comparison Operator

Higher Ed
Define a type that supports all standard relational operators in pre C++20 and using new defaulted three-way comparison operator.

• Define the six member oper
ators
• Define only <=
> operator
• Test
b
oth...
Instructional Video3:14
Curated Video

C++ 20 (2a) New Features - Usage of <=> Operator and How to Make Comparisons

Higher Ed
How the spaceship operator is supposed to be used? How do you compare two values using this operator? How does comparing the return value against literal zero work?

• Test return value of comparing integers and verify it’s...
Instructional Video4:15
Curated Video

C++ 20 (2a) New Features - Associated Changes in Operator==

Higher Ed
Verify that if we define three-way comparison then equality will not be defined for us.

• Test equality with defaulted three-way comparison ope
rator
• Test equality with custom three-way compariso
n operator
• Test...
Instructional Video4:42
Curated Video

C++ 20 (2a) New Features - Concepts Library

Higher Ed
Implement mysort wrapper to std::sort overload that takes comparison function. Pass invalid comparison function to the wrapper.

• Consider compiler error diagno
stics
• Constrain function using concepts from standard...
Instructional Video7:48
Curated Video

Core Java Programming Course- Bracket Expressions in RegEx (regular expressions)

Higher Ed
This video explains the various bracket expressions in RegEx.
r/>
This clip is from the chapter "Regular Expressions" of the series "Learn How to Code: The Complete Core Java Programming Course".This section explains the...
Instructional Video2:52
Curated Video

C++ 20 (2a) New Features - Rationale for Ranges

Higher Ed
Passing pair of iterators to algorithms makes them difficult to compose. Code that uses algorithms is verbose and does not facilitate functional programming.

• Convert a pair of pointers to a
range
• Use constrained...
Instructional Video10:16
Curated Video

Python for Network Forensics 5.2: Port Enumeration

Higher Ed
In this video, we will further our attack by enumerating devices found on our network. This will provide us with services that may be exploitable. • Introduce network sockets and network connections in Python • Use sockets and build a...
Instructional Video10:02
Curated Video

Core Java Programming Course- Regularizing Number Ranges

Higher Ed
This video explains how to regularize number ranges.
r/>
This clip is from the chapter "Regular Expressions" of the series "Learn How to Code: The Complete Core Java Programming Course".This section explains the various regular...
Instructional Video9:54
Curated Video

CISSP® Certification Domain 3: Security Architecture and Engineering Video Boot Camp for 2022 - Fire suppression and hot and cold aisles

Higher Ed
CISSP Domain 3: System Architecture and Engineering: Fire suppression and hot and cold aisles.
r/>
This clip is from the chapter "CISSP Domain 3: System Architecture and Engineering" of the series "CISSP® Certification Domain...
Instructional Video7:36
Curated Video

Multi-Paradigm Programming with Modern C++ - Parallel STL

Higher Ed
C++17 has introduced parallel STL. Many of the existing algorithms can now be executed in parallel. Parallelism can be enabled by specifying execution policies. In this video we will learn how existing algorithms can be parallelized...
Instructional Video3:35
Curated Video

C++ 20 (2a) New Features - Rewriting and Synthetizing Expressions

Higher Ed
How is defaulted three-way comparison operator able to handle all standard comparisons, even if it is the type that supports it is on right hand side?

• Discuss rewriting expres
sions
• Discuss synthetizing...
Instructional Video5:15
Brian McLogan

Graphing and finding the inverse of a rational function

12th - Higher Ed
👉 Learn how to find the inverse of a rational function. A rational function is a function that has an expression in the numerator and the denominator of the function. The inverse of a function is a function that reverses the "effect" of...
Instructional Video1:54
Curated Video

C++ Standard Template Library in Practice - Section 5 Review

Higher Ed
Review the entire section until now

• Review the topics co
vered
• Talk about lesso
ns learned
• Introduce the next topic tha
t
we will cover

This clip is from the chapter "Algorithms - Part Two" of the...
Instructional Video4:56
Curated Video

C++ 20 (2a) New Features - Concepts as Compile Time Predicates

Higher Ed
Define function template comp that uses three-way comparison operator and pass a type that does not support it.

• Consider compiler error diagno
stics
• Implement ThreeWayComparable concept and apply to comp templat
e...
Instructional Video1:22
Curated Video

C++ 20 (2a) New Features - Standardization Process of C++20

Higher Ed
Examine the standardization process timeline. Check which features are included in the new standard and which are left as a technical specification.

• Identify four major features of
C++20
• Identify important technical...
Instructional Video2:00
Curated Video

C++ 20 (2a) New Features - Formatting User Defined Types

Higher Ed
This video shows how to define formatting for user defined type.

• Define struct p
erson
• Define stream insertion operator
for person
• Test printing person object using std::cout
an
d std::format

This...
Instructional Video4:47
Curated Video

C++ 20 (2a) New Features - std::format: Placeholders and Syntax

Higher Ed
This video shows formal syntax for formatting library mini language and how to use placeholders and placeholder IDs.

• Define simple text with integers and switch placeholders usin
g IDs
• Consider formal syntax of...
Instructional Video3:13
Curated Video

The Complete Excel Guide: Beginners to Advanced - Mouse Features

Higher Ed
Let's explore the mouse features available in Excel.
r/>
This clip is from the chapter "Excel 2019: Introduction" of the series "The Complete Excel Guide: Beginners to Advanced".The upcoming 21 sections for Microsoft Excel 2019...
Instructional Video4:12
Curated Video

C++ Standard Template Library in Practice - Swapping

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

• Introduce the listener to the std::swap algo
rithm
• Show how it works and explain the different versions
available
• Reinforce...
Instructional Video4:59
Curated Video

C++ 20 (2a) New Features - Generator Expressions

Higher Ed
Define a simple Fibonacci function with a co_yield expression.

• Define a Fibonacci fun
ction
• Add generator definition using raw coroutines
facilities
• Add generator definition using c
pp
coro template

...