Curated Video
Python 3 for Beginners: Python Tuples - Immutable Lists
In this video, you will learn all about tuples in Python, how they differ from lists, and why they're useful. We'll cover the basics of creating a tuple, accessing its values by index, and looping through its items using a for loop....
Curated Video
Python 3 for Beginners: Introduction to Functions in Python
In this video, you will learn all about functions in Python. Functions are blocks of code that can be reused throughout your program to perform specific actions and can even return data. You'll discover how to recognize when you should...
Curated Video
Python 3 for Beginners: Working with Numbers, Conversions, and Comments
In this video, we explore the basics of working with numbers in Python. You'll learn how to use numbers directly in your code without any special decorations, and find out what happens when you enclose a number in quotes. The video also...
Curated Video
Python 3 for Beginners: Introduction to Python Modules and the Standard Library
In this Python tutorial video, you'll learn all about modules! Our helpful instructor will introduce you to these important building blocks of Python programming, showing you how to create your own and include existing modules in your...
Curated Video
Python 3 for Beginners: Python File Handling
In this video, you will learn about working with files in Python. From opening and closing files to reading and writing data, this video covers the basics of file handling in Python. You will also discover the different file modes and...
Curated Video
Switch...Case
Switch... Case statements allow you to evaluate a number of conditions at once. You'll learn Switch conditionals in this video.
Curated Video
Intro To Python Programming - Ternary Operator
The ternary operator is an abbreviated way of expressing a conditional-- Using it makes you look like a sophisitcated Python programmer. You'll learn the ternary operator in this segment.
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 02 - Introduction to Nested If Else
In this video, we will learn about nested if else. This clip is from the chapter "Conditionals" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explore conditionals with Java - if else...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 14 - Primitive Data Types in Depth – Conclusion
In this video, we will learn about primitive data types in depth – conclusion. This clip is from the chapter "Primitive Data Types and Alternatives" of the series "Java Programming for Complete Beginners - Java 16".In this section, we...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 07 - Understanding Basics of Encapsulation with Setter Methods
In this video, we will understand basics of encapsulation with setter methods. This clip is from the chapter "Introduction to Object-Oriented Programming" of the series "Java Programming for Complete Beginners - Java 16".In this section,...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 23 - Java Conditionals and If Statement – Introduction
This video talks about Java conditionals and if statement – introduction. This clip is from the chapter "Introduction to Java Programming with JShell Using Multiplication Table" of the series "Java Programming for Complete Beginners -...
Curated Video
Java Programming for Complete Beginners - Java 16 - Congratulations
Congratulations! This clip is from the chapter "Congratulations" of the series "Java Programming for Complete Beginners - Java 16".The author ends the course on a congratulatory note.
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 09 - Building REST API to Update a Course – PUT
In this lesson, we will build REST API to update a course. This clip is from the chapter "Simple REST API with Spring Boot and Spring Data JPA" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 13 - OPTIONAL HANDS ON - Using Docker to Launch MySQL
In this lesson, we will launch MySQL with Docker in this session. This clip is from the chapter "Simple REST API with Spring Boot and Spring Data JPA" of the series "Java Programming for Complete Beginners - Java 16".In this section, we...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 09 - Exploring Spring Boot Actuator
In this lesson, we will explore a few more Spring Boot features. This clip is from the chapter "Getting Started with Spring Boot" of the series "Java Programming for Complete Beginners - Java 16".This section focusses on building a Hello...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 07 - Playing with Spring Boot
In this session, we will dive in further to understand what is happening behind the Spring Boot application. This clip is from the chapter "Getting Started with Spring Boot" of the series "Java Programming for Complete Beginners - Java...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 05 - Understanding Spring Boot Magic - Spring Boot Starter Projects
In this session, we will learn about Spring Boot starter project. This clip is from the chapter "Getting Started with Spring Boot" of the series "Java Programming for Complete Beginners - Java 16".This section focusses on building a...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 04 - Java Modularization - 01 - Building Service and Consumer
In this lesson, we will build a simple application with modularization. This clip is from the chapter "Java New Features - Java 10 to Java 16" of the series "Java Programming for Complete Beginners - Java 16".This section focuses on the...
Curated Video
Java Programming for Complete Beginners - Java 16 - Java Tip 11 - Public Static Final – Constants
In this session, we will learn about public static final – constants. This clip is from the chapter "Java Tips" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will look at a few tips for imports,...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 08 - CopyOnWrite Concurrent Collections - When Reads are More Than Writes
In this session, we will learn about CopyOnWrite concurrent collections - when reads are more than writes. This clip is from the chapter "More Concurrency with Concurrent Collections and Atomic Operations" of the series "Java Programming...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 05 - Basics of Handling Exceptions - Need for finally
In this session, we will learn about basics of handling exceptions - need for finally. This clip is from the chapter "Introduction to Exception Handling" of the series "Java Programming for Complete Beginners - Java 16".In this section,...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 10 - Executor Service - Customizing Number of Threads
In this session, we will learn about executor service - customizing number of threads. This clip is from the chapter "Introduction to Threads and Concurrency" of the series "Java Programming for Complete Beginners - Java 16".In this...
Curated Video
Python 3 for Beginners: File Input and Output in Python
Welcome to our instructional video on file handling in Python! In this section, you'll learn all about storing and retrieving data from files in Python. We'll introduce you to file objects and several file object methods that will allow...
Curated Video
Python 3 for Beginners: Python Functions - The Dry Concept
In this educational video, we dive into the concept of Dry programming, which stands for don't repeat yourself. We explore how functions can be used in Python to reduce code repetition and increase program efficiency. You'll learn how to...