Instructional Video8:52
Curated Video

Learn and Master C Programming - Arguments of main() function - Part 2

Higher Ed
We will see how we can write code to implement two operations on the command-line while handling input errors. This clip is from the chapter "Strings" of the series "Learn and Master C Programming For Absolute Beginners!".In this...
Instructional Video5:51
Math Fortress

GRE Arithmetic: Fractions (Part 2 of 5)

12th - Higher Ed
This video is a review of basic arithmetic for the purpose of solving problems on the quantitative reasoning section of the GRE revised General Test. This video covers the basics of fractions. Topics covered include: addition and...
Instructional Video9:16
Curated Video

Apache Spark 3 for Data Engineering and Analytics with Python - Challenge Part 2 - Rearrange the Schema

Higher Ed
Let's work on the second part of the challenge. In this session, we will be changing some datatypes, rename a few columns, drop some columns, and add new columns. This clip is from the chapter "Structured API - Spark DataFrame" of the...
Instructional Video6:26
Curated Video

Core Java Programming Course- Reading MS Excel Data into a 2D Array

Higher Ed
This video demonstrates how to read an MS Excel data into a 2D array. This clip is from the chapter "Working with MS Excel Files (Apache POI)" of the series "Learn How to Code: The Complete Core Java Programming Course".null
Instructional Video6:17
Curated Video

Core Java Programming Course- Two-dimensional (2D) Array Exercise

Higher Ed
This video presents an exercise on 2D arrays. This clip is from the chapter "Arrays" of the series "Learn How to Code: The Complete Core Java Programming Course".This section explains arrays in Java.
Instructional Video3:12
Brian McLogan

Raising a scientific number to the third power

12th - Higher Ed
👉 Learn how to multiply numbers written in scientific notations. Scientific notation is a convenient way of writing very large or very small numbers. A number written in scientific notation is of the form a * 10^n where a is the first...
Instructional Video8:35
Curated Video

Julia for Data Science (Video 5)

Higher Ed
Julia is an easy, fast, open source language that if written well performs nearly as well as low-level languages such as C and FORTRAN. Its design is a dance between specialization and abstraction, providing high machine performance...
Instructional Video6:26
Packt

Explaining Function Overloading in Java with an Example

Higher Ed
This video explains function overloading in Java with an example. 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 Video6:15
Curated Video

Learn and Master C Programming - Basic C Types Continued

Higher Ed
We go over the C basic types again and discuss them in more detail so you become more familiar with them. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C Programming For Absolute Beginners!".In...
Instructional Video4:56
Brian McLogan

Algebra 2 - Why do we rationalize the denominator with complex numbers, (6 + 8i)/9i

12th - Higher Ed
In this video tutorial I show you how to divide complex numbers. Since complex numbers have an imaginary part which we cannot divide into other numbers we rewrite the expression by multiplying by i or the conjugate on the denominator or...
Instructional Video4:50
Curated Video

Subtracting Integers: Understanding the Difference Definition and its Relation to Distance

K - 5th
In this video, the teacher explains how to subtract integers using the difference definition of subtraction on a number line. They also discuss the concept of distance and how it relates to subtraction. The teacher provides examples and...
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 operators • Define only <=> operator • Test both solutions This clip is from the...
Instructional Video7:39
KnowMo

Standard Form with Positive Powers: Converting Large and Small Numbers Into a Common Format

12th - Higher Ed
This video is a tutorial on standard form with positive powers. The instructor explains what standard form is and why it is useful for expressing large and small numbers in a condensed format. She then goes on to explain the structure of...
Instructional Video4:41
Curated Video

Learn and Master C Programming - Pointers and Strings (2): Printing Out Vowels In a String

Higher Ed
We will write a function called PrintVowels to learn how to process strings using pointers and practice with pointer arithmetic and contents of pointers...etc. This clip is from the chapter "Pointers" of the series "Learn and Master C...
Instructional Video6:44
Curated Video

Learn and Master C Programming - How To Calculate Array Size in C/C++

Higher Ed
Learn how to use the compiler with the help of 'sizeof' operator to calculate the size (number of elements) inside array without having to hard-code this value! This clip is from the chapter "Arrays" of the series "Learn and Master C...
Instructional Video5:46
Curated Video

GCSE Secondary Maths Age 13-17 - Algebra: Algebraic Fractions - Explained

9th - 12th
SchoolOnline's Secondary Maths videos are brilliant, bite-size tutorial videos delivered by examiners. Ideal for ages 13-17, they cover every key topic and sub topic covered in GCSE Maths in clear and easy to follow steps. This video...
Instructional Video6:57
Curated Video

Predictive Analytics with TensorFlow 1.3: Installing Python in Windows

Higher Ed
This video will first explain the installing and getting started with python. We will then see python data types, strings, lists, tuples, dictionary, sets and functions. • Install python • See the python data types
Instructional Video19:48
APMonitor

Python 🐍 Variables

10th - Higher Ed
Variables store information and are objects in Python. For example, if you wanted to keep a set temperature for an egg, you would type egg = 37.5 for °C or egg = 99.5 for °F. The first part tells what the variable will be called, and the...
Instructional Video3:45
Curated Video

Learn and Master C Programming - More on Block Scope in C

Higher Ed
We will look at an important tip to help you avoid running into compilation issues with some C compilers when declaring and using local variables. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C...
Instructional Video14:06
Curated Video

C++ Developer - Introduction to Pointers

Higher Ed
This section introduces you to pointers. This clip is from the chapter "Pointers" of the series "The Complete C++ Developer Course".This section discusses pointers in C++.
Instructional Video6:30
Math Fortress

GRE Arithmetic: Integers (Part 3 of 4)

12th - Higher Ed
This video is a review of basic arithmetic for the purpose of solving problems on the quantitative reasoning section of the GRE revised General Test. This video covers the basics of integers. Topics covered include: Division, Division as...
Instructional Video8:45
Curated Video

Learn and Master C Programming - using #define to define macros and avoiding macro pitfalls

Higher Ed
We will learn how to define macros using #define and ways to detect and avoid macro pitfalls by using the command-line options to view the output of our source files after removing all preprocessor directives. This clip is from the...
Instructional Video1:44
Curated Video

Learn and Master C Programming - Pointer Arithmetic: Printing out Memory Addresses for Pointers

Higher Ed
We will modify our sample from previous lecture to display memory addresses to inspect them and verify pointer arithmetic is indeed translating increments/decrements based on data type. This clip is from the chapter "Pointers" of the...
Instructional Video2:25
Curated Video

Learn and Master C Programming - Introduction & Section Overview

Higher Ed
Overview of the section and a quick review of memory, variables and the introduction of & operator. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute Beginners!".In this section of the...