Instructional Video5:47
Wonderscape

Comparing Two-Digit Numbers: Less Than, Greater Than, and Equal To

K - 5th
Learn how to compare two-digit numbers using less than, greater than, and equal to symbols. Understand the role of the tens and ones places in determining which number is larger or smaller.



Understanding Value, Base 10 and...
Instructional Video5:13
Curated Video

Comparing and Ordering Rational Numbers

9th - Higher Ed
In this video, we'll explore how to compare and order rational numbers, including decimals, fractions, integers, and absolute values. Perfect for beginners or anyone who needs a quick review. This tutorial will make these concepts easy...
Instructional Video7:24
Curated Video

Machine Learning: Random Forest with Python from Scratch - Let's Introduce Machine Learning

Higher Ed
This brief video outlines machine learning, its importance, and how it can be used in various applications to make life easier.
<
br/>
This clip is from the chapter "Introduction to Machine Learning" of the series "Machine Learning:...
Instructional Video5:20
Curated Video

Machine Learning: Random Forest with Python from Scratch - While Loop

Higher Ed
Let's understand the while loop, a conditional loop that runs until a given condition is fulfilled.
<
br/>
This clip is from the chapter "Introduction to Python" of the series "Machine Learning: Random Forest with Python from...
Instructional Video6:07
Curated Video

Machine Learning: Random Forest with Python from Scratch - Better Coding Practice, Completing the Game

Higher Ed
In this lecture, we will complete the game we left in the previous lesson.
<
br/>
This clip is from the chapter "Introduction to Python" of the series "Machine Learning: Random Forest with Python from Scratch©".This section focuses...
Instructional Video7:54
Curated Video

Machine Learning: Random Forest with Python from Scratch - Comparison Operators

Higher Ed
Here, you will learn about Python's two types of operators, the comparison operator, and the logical operator.
<
br/>
This clip is from the chapter "Introduction to Python" of the series "Machine Learning: Random Forest with Python...
Instructional Video11:36
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array.filter Method

Higher Ed
In this video, we will explore the Array.filter method, which allows us to create a new array with only the elements that pass a certain test.
<
br/>
This clip is from the chapter "Loops, Iteration, and High-Order Array Methods" of...
Instructional Video10:22
Curated Video

Modern JavaScript from the Beginning - Second Edition - Ternary Operator

Higher Ed
The ternary operator is a concise way to write if/else statements in JavaScript, and this video shows us how to use it effectively.
<
br/>
This clip is from the chapter "Logic and Control Flow" of the series "Modern JavaScript from...
Instructional Video8:13
Curated Video

Modern JavaScript from the Beginning - Second Edition - Logical Operators

Higher Ed
This video covers the logical operators in JavaScript, including AND (andand), OR (||), and NOT (!), which allows us to combine conditions and create more complex logic.
<
br/>
This clip is from the chapter "Logic and Control Flow"...
Instructional Video7:14
Curated Video

Modern JavaScript from the Beginning - Second Edition - Else-If and Nesting

Higher Ed
Building on the previous video, this video shows how to use else-if statements to handle multiple conditions and how to nest if statements within each other. This clip is from the chapter "Logic and Control Flow" of the series "Modern...
Instructional Video7:00
Curated Video

Modern JavaScript from the Beginning - Second Edition - If Statements

Higher Ed
This video covers the basic syntax and use of if statements in JavaScript, which allow us to execute different code blocks based on conditions.
<
br/>
This clip is from the chapter "Logic and Control Flow" of the series "Modern...
Instructional Video11:13
Curated Video

Machine Learning: Random Forest with Python from Scratch - Reading and Manipulating Dataset

Higher Ed
Previously, you learned how to read a dataset; now, we will look at manipulating the data and using a sample dataset in our code.
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Instructional Video4:28
Curated Video

Machine Learning: Random Forest with Python from Scratch - Using Pandas for Random Forest (2)

Higher Ed
This is a continuation of the previous lesson, and here we will look at conditionally selecting values from a dataset.
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest...
Instructional Video7:32
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Exercise Solution - Decision-Making Structures in Rust

Higher Ed
This is a solution video on decision-making structures in Rust.
<
br/>
This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the...
Instructional Video1:48
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Exercise - Decision-Making Structures in Rust

Higher Ed
This is an exercise video on decision-making structures in Rust.
<
br/>
This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on...
Instructional Video4:05
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Else If Statements and Nested If Statements in Rust

Higher Ed
In this video, you will look at Else If statements and nested If statements in Rust.
<
br/>
This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This...
Instructional Video3:37
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Logical Operators in Rust

Higher Ed
In this video, you will look at logical operators in Rust.
<
br/>
This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the...
Instructional Video2:03
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Relational Operators

Higher Ed
In this video, you will look at relational operators in Rust.
<
br/>
This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the...
Instructional Video7:50
Curated Video

Modern JavaScript from the Beginning - Second Edition - OOP Game Challenge

Higher Ed
In this video, we will apply our knowledge of OOP to create a simple game using constructor functions and prototypes. We will demonstrate how to create game objects, add methods to their prototypes, and share properties and methods...
Instructional Video2:13
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Find and findIndex Methods

Higher Ed
In this video, we will explore the find() and findIndex() methods used to search for a specific element in an array, where the find() returns the first element that matches a condition, while findIndex() returns the index of the first...
Instructional Video3:24
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Some and Every Methods

Higher Ed
In this video, we will understand the some() and every() methods used to perform conditional checks on array elements, where some() checks whether at least one element satisfies a condition, while every() verifies if all elements meet...
Instructional Video4:19
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Comparison Operator

Higher Ed
In this video, we will explore the comparison operators in JavaScript, such as equal to, not equal to, greater than, less than. You will learn to compare values and evaluate conditions based on the results of these comparisons.
Instructional Video12:23
Curated Video

Type-Safe Interfaces with Modern C++ - std::string_view – Basic Interface

Higher Ed
Learn about the most important member functions and operations provided with `std::string_view`.
Instructional Video8:59
Curated Video

Aging Differently: Exploring Gender Variations in Skin, Hair, and Weight

6th - Higher Ed
Dive into the fascinating differences in how men and women age, with a close look at skin elasticity, hair loss patterns, and weight distribution changes over the years. Discover the science behind why these changes occur and practical...