Instructional Video4:02
Curated Video

Learn and Master C Programming - Using Ternary Operator

Higher Ed
We will see how we can use the C/C++ ternary operator. This clip is from the chapter "Conditional Statements" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, learn the syntax to use conditional...
Instructional Video9:18
Curated Video

Learn and Master C Programming - How to use Basic C Types with prtinf format specifiers

Higher Ed
We will learn how to display all basic types using prtinf function. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C Programming For Absolute Beginners!".In this section of the course, we look...
Instructional Video9:30
Curated Video

The Full Stack Web Development - Helpful Functions For Debugging

Higher Ed
PHP Errors, Debugging & Config: Helpful Functions For Debugging This clip is from the chapter "PHP Errors, Debugging & Config" of the series "The Full Stack Web Development".In this section, we talk about different types of error, debug...
Instructional Video10:22
Curated Video

C++ Developer - Dynamic Memory - Part 1

Higher Ed
This is the first part of a two-part video that explains dynamic memory. This clip is from the chapter "Pointers" of the series "The Complete C++ Developer Course".This section discusses pointers in C++.
Instructional Video5:09
KnowMo

Standard Form with Negative Powers

12th - Higher Ed
This video provides an introduction to standard form with negative powers, which is a way to express extremely small numbers in a simplified format using scientific notation with a negative exponent. The presenter explains the structure...
Instructional Video4:30
Curated Video

Learn and Master C Programming - Why Do We Need Pointers?

Higher Ed
You understand the meaning of passing by value and the local function variables in more details. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute Beginners!".In this section of the...
Instructional Video14:27
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - BST from scratch - Delete demo

Higher Ed
Build the binary search function using iteratively This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Instructional Video6:40
Curated Video

C++ Developer - Project - Vector Data

Higher Ed
This video presents a project on vector data. This clip is from the chapter "Arrays and Vectors" of the series "The Complete C++ Developer Course".This section explains arrays and vectors.
Instructional Video3:13
Brian McLogan

Multiply and simplify fractions using trigonometric identities

12th - Higher Ed
Multiply and simplify fractions using trigonometric identities
Instructional Video6:55
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 18 - Understanding Primitive Variable Types in Java

Higher Ed
This video talks about understanding primitive variable types in Java. This clip is from the chapter "Introduction to Java Programming with JShell Using Multiplication Table" of the series "Java Programming for Complete Beginners - Java...
Instructional Video6:27
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 14 - Introduction to Variables in Java - Exercises and Puzzles

Higher Ed
This video talks about variables in Java - exercises and puzzles. This clip is from the chapter "Introduction to Java Programming with JShell Using Multiplication Table" of the series "Java Programming for Complete Beginners - Java...
Instructional Video5:48
Curated Video

Learn and Master C Programming - Using if...else...conditional statements

Higher Ed
We will look at how to use if...else conditional statements in C and understand how they work. This clip is from the chapter "Conditional Statements" of the series "Learn and Master C Programming For Absolute Beginners!".In this section,...
Instructional Video5:23
Let's Tute

Some Stupid Math Mistakes: HCF and LCM

9th - Higher Ed
The video challenges viewers to test their knowledge of HCF and LCM through a series of situational problems. The problems range from arranging flowers to distributing cake and require quick thinking and analysis. Viewers have 10 seconds...
Instructional Video3:27
Curated Video

Java 11 Programming for Beginners 4.4: Error Handling in Java 11

Higher Ed
The goal here is to acclimatize the beginner with Java’s error handling mechanisms. • Glance through theory on Java exception and the newer try-with-resource • We improve the code by avoiding errors using checks • Use try-catch to better...
Instructional Video20:10
APMonitor

Python 🐍 Print

10th - Higher Ed
Printing is displaying values to the screen. The word print comes from the time when programs previously put ink on paper. You use the built in python function print() to output values. You could use this to tell you what is the current...
Instructional Video3:33
Curated Video

Learn and Master C Programming - Working with 2D Arrays

Higher Ed
We look at an example of declaring and printing out a 2D array in C/C++. This clip is from the chapter "Arrays" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we will look at how to declare and...
Instructional Video6:46
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Analyze log(n), visualize the math behind it and how it relates to algorithms

Higher Ed
Build a recursive factorial function step by step This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is...
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 algorithms • Compose...
Instructional Video9:50
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 02 - Java Integer Data Types - Puzzles - Octal, Hexadecimal, Post and Pre Integer

Higher Ed
In this video, we will learn about Java integer data types - puzzles - octal, hexadecimal, post and pre integer. This clip is from the chapter "Primitive Data Types and Alternatives" of the series "Java Programming for Complete Beginners...
Instructional Video4:24
Curated Video

Core Java Programming Course- Iterating over Sets

Higher Ed
This video explains how to iterate over sets. This clip is from the chapter "Sets and Maps" of the series "Learn How to Code: The Complete Core Java Programming Course".This section explains the various sets and maps available in Java.
Instructional Video8:57
Packt

What are Arrays and their usage in Java Programs?

Higher Ed
This video explains arrays and their usage in Java programs. 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 and...
Instructional Video3:12
Curated Video

Learn and Master C Programming - Passing By Value vs. Passing By Pointer

Higher Ed
We will revisit passing parameters to functions to go over differences between passing by value and passing by reference (pointer). This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute...
Instructional Video3:47
IDG TECHtalk

Creating constant values in Go with the const keyword | Smart Go

Higher Ed
The const keyword in Go lets you create values that are immutable across the lifetime of your program. But Go consts behave a little differently from similar features in other languages. Learn how consts work in Go, and how to use them...
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 expressions • Discuss synthetizing expressions • Verify that...