Instructional Video5:12
Curated Video

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

Higher Ed
In this video, you will explore class variables in Python OOP, how they differ from instance variables, and their use cases in creating shared attributes among class instances.
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 Video5:36
Curated Video

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

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

Python for OOP - The A to Z OOP Python Programming Course - Methods

Higher Ed
In this video, you will learn about methods, which are functions defined within a class. You will understand the different types of methods, such as instance methods, class methods, and static methods, and how to use them in your...
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 Video10:29
Curated Video

Fundamentals of Object-Oriented Programming - C++ - UML Abstract Class - ATM Part 3

Higher Ed
In this video, we will work on the transaction class and add reporting to our ATM system. This clip is from the chapter "Module 4" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, we will cover UML case...
Instructional Video14:32
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Abstract Class

Higher Ed
In this video, we will get introduced to the inheritance UML abstract class with the help of a case study. This clip is from the chapter "Module 4" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, we...
Instructional Video15:03
Curated Video

Fundamentals of Object-Oriented Programming - C++ - UML Inheritance - Employee Part 2

Higher Ed
In this video, we will begin implementing the data members in the classes by adding properties and methods for each class. This clip is from the chapter "Module 4" of the series "Fundamentals of Object-Oriented Programming - C++".In this...
Instructional Video5:22
Curated Video

Fundamentals of Object-Oriented Programming - C++ - UML Inheritance - Case Study - Employee Part 1

Higher Ed
In this video, we will first understand what inheritance is. Then we will have a look at an employee inheritance hierarchy with a UML diagram. Based on the information in the diagram, we will be writing a program to fulfil the...
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 Video6:11
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Friends - Functions and Classes

Higher Ed
In this video, you will learn about Friends functions and 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 STL (Standard Template...
Instructional Video4:00
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Header and Implementation Files

Higher Ed
In this video, you will learn how to add header and implementation files to our distance program. This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn...
Instructional Video5:29
Curated Video

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

Higher Ed
In this video, we will cover the learning objective of this module. 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 Video5:40
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Classes and Objects

Higher Ed
In this video, you will learn about classes and objects with abstraction and encapsulation. This clip is from the chapter "Module 2" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, we will cover...
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 Video14:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Details Page to Show List of Movies

Higher Ed
This video lecture shows how to create a details page for movies with a navigation menu. 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 section...
Instructional Video8:02
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Register the Data Access Services Class in Startup

Higher Ed
Here, we will register the data access service in the Startup class ConfigureServices method. Once it is registered, the service can be called and used in the application. This clip is from the chapter "Create a CRUD Application in...
Instructional Video12:24
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Data Access Service and Methods to Retrieve Records

Higher Ed
This lecture teaches how to create the Data Access Service class that implements an interface. You will be able to create data access service to the movies model as well as retrieve a list of movies and any specific movie from the...
Instructional Video8:01
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create an Interface for Data Access Service

Higher Ed
This video shows the creation of an interface for a data access service that implements this interface. 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...