Curated Video
Java Multithreading and Parallel Programming Masterclass - Introducing Spring Boot Framework (In a Nutshell)
This video helps in introducing you to the Spring Boot framework (in a nutshell).
Curated Video
Java Multithreading and Parallel Programming Masterclass - Creating Thread Pools with Executors
This video helps in creating thread pools with Executors.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Introducing the ThreadPoolExecutor Class
This video helps in introducing the ThreadPoolExecutor class.
Curated Video
Java Multithreading and Parallel Programming Masterclass - The Synchronized keyword
This video demonstrates the Synchronized keyword.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Thread Local Variables and Race Conditions
This video talks about thread local variables and race conditions.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Thread Exception Handling
This video explains thread exception handling.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Let's Play with Thread Groups
This video helps you explore and plays around with thread groups.
Curated Video
Java Multithreading and Parallel Programming Masterclass - Thread Creation
This video explains how to create a thread.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Polymorphism
In this video, you will explore the concept of polymorphism, a fundamental concept in OOP, and how it enables objects of different classes to be used interchangeably. You will learn about different types of polymorphism, including method...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Operator Overloading
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Dunder Methods or Magic Methods
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Name Mangling in Python
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Method Overriding and MRO
In this video, you will learn about method overriding, which allows a subclass to provide a new implementation of a method inherited from a parent class. You will also understand the concept of method resolution order (MRO), which...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Multilevel Inheritance: Part 1
In this video, you will explore the concept of multilevel inheritance in Python. You will learn how to create classes that inherit from multiple levels of parent classes, allowing for a more complex class hierarchy. This video will...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Abstraction and Encapsulation
In this video, you will learn about abstraction and encapsulation, two important principles of OOP. You will understand how abstraction allows you to hide complex details and expose only the essential features of a class, and how...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Exercise on Static Method (Part 1)
In this video, you will apply what you have learned about static methods through a practical exercise. You will be given a problem statement and will learn how to design and implement static methods to solve the problem. This exercise...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - isinstance() and issubclass()
In this video, you will learn about the isinstance() and issubclass() built-in functions in Python, which are used to determine object types and class relationships, respectively. You will understand how to use these functions to check...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Multiple Inheritance: Part 2
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Introduction to Inheritance
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Exercise on Static Method (Part 3)
In this video, you will continue to apply your knowledge of static methods through another practical exercise. You will be given more challenging problem statements and will learn how to design and implement static methods to solve them....
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Static Method
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....
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 2)
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.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 1)
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Object Techniques + Class Variables (Part 1)
In this video, you will dive into an exercise on class variables, where you will practice creating and manipulating class variables to understand their behavior and usage in OOP.