Instructional Video7:53
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Operator Overloading

Higher Ed
In this video, you will learn about operator overloading in Python, which allows you to redefine the behavior of operators for custom classes. You will learn how to implement operator overloading to make your classes more powerful and...
Instructional Video9:43
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Dunder Methods or Magic Methods

Higher Ed
In this video, you will dive into dunder (double underscore) methods or magic methods in Python. You will learn how these special methods allow you to customize the behavior of classes and objects and gain a deep understanding of their...
Instructional Video10:32
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Name Mangling in Python

Higher Ed
In this video, you will explore name mangling in Python, a technique to change class attribute names to avoid conflicts. You will learn how to create private attributes using name mangling and understand the rules and conventions...
Instructional Video9:35
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Object Techniques + Class Variables (Part 2)

Higher Ed
In this video, you will explore advanced object techniques in Python, such as using class variables in conjunction with objects to create powerful and dynamic OOP structures.
Instructional Video7:37
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Multiple Inheritance: Part 2

Higher Ed
Continuing from the previous video, this video will cover multiple inheritance in Python, which allows a class to inherit from more than one parent class. You will learn about the method resolution order (MRO) and how to handle conflicts...
Instructional Video8:15
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Introduction to Inheritance

Higher Ed
Building upon the previous video, this video will introduce you to the concept of inheritance in Python. You will learn how to create and use subclasses that inherit attributes and methods from a parent class. This video will cover the...
Instructional Video6:44
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Exercise on Static Method (Part 2)

Higher Ed
Continuing from the previous video, this exercise will provide further challenges in designing and implementing static methods to solve complex problems. You will apply your knowledge of static methods and their advanced usage to tackle...
Instructional Video4:40
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Static Method

Higher Ed
In this video, you will explore static methods in Python. You will understand the concept of static methods, which are methods that do not depend on the state of the instance or the class, and how to define and use them in your classes....
Instructional Video5:18
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 2)

Higher Ed
Building upon the previous video, this video will provide further insights into class methods in Python. You will learn about the @classmethod. This video will deepen your understanding of class methods and their advanced usage.
Instructional Video6:08
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 1)

Higher Ed
In this video, you will dive into the concept of class methods in Python. You will learn how to define and use class methods, which are methods that are bound to the class and not the instance of the class. This video will cover the...
Instructional Video4:41
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Class Variables

Higher Ed
In this video, you will learn about class variables, which are shared by all instances of a class. You will understand how to define and use class variables, and how they differ from instance variables. This video will provide a...
Instructional Video5:25
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Exercise 2 on Methods

Higher Ed
In this video, you will continue to apply your knowledge of methods through another practical exercise. You will be given a more complex problem statement and will learn how to design and implement methods to solve the problem. This...
Instructional Video8:06
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Exercise on Class

Higher Ed
In this video, you will apply what you have learned about classes through a practical exercise. You will be given a problem statement and will learn how to design and implement a class to solve the problem. This exercise will help you...
Instructional Video7:01
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Classes in Detail

Higher Ed
In this video, you will take an in-depth look at classes in Python, including their structure, usage, and benefits. You will also explore the importance of __init__ and self in class code, using practical examples for better understanding.
Instructional Video8:37
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Create Your First Class with OOP

Higher Ed
In this video, you will learn how to create your first class in Python using OOP principles. You will understand the syntax for defining a class, creating objects, and initializing attributes. This video will provide a step-by-step guide...
Instructional Video13:23
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Classes - File I/O Program

Higher Ed
In this video, we will work on a patient data program and learn about input/output classes. This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn about...
Instructional Video3:07
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Files - CHAR IO RDBUF

Higher Ed
In this video, you will learn about char() and rdbuf(). This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn about STL (Standard Template Library)...
Instructional Video3:32
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Files - BUFFER

Higher Ed
In this video, you will learn about file I/O readd Buffer class. This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn about STL (Standard Template...
Instructional Video4:49
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Files - FSTREAM

Higher Ed
In this video, you will learn about file I/O classes such as fstream, ifstream, and ofstream. This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn...
Instructional Video7:14
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Module 2 Objectives

Higher Ed
In this video, we will cover the learning objective of this module. This clip is from the chapter "Module 2" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, we will cover statements and flow control,...
Instructional Video13:10
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Testing the Counter Component

Higher Ed
This video explains the way a bUnit package is added to a Blazor test project created with xUnit test framework and shows how to write a unit test to test the built-in counter component. This clip is from the chapter "Testing Blazor...
Instructional Video9:38
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Confirm Delete Dialog

Higher Ed
This lecture shows how to create a confirm delete dialog for getting the confirmation from users before deleting a movie. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0...
Instructional Video9:44
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Edit Movies

Higher Ed
Through this lecture, the editing of movies has been accomplished using the same modal dialog used for adding a new movie. You will learn how to achieve the task of editing a record through a user input modal popup. This clip is from the...
Instructional Video9:05
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Seed the Movies Database

Higher Ed
In this video, you will learn the process of seeding the database with some initial records for testing. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This...