Curated Video
Python 3 for Beginners: Understanding Tuples in Python - Immutable Lists and Built-in Functions
In this comprehensive tutorial, we delve into the world of tuples in Python. You'll learn what tuples are, why they're useful, and how to create and manipulate them. Our expert instructor will guide you through the process of converting...
Curated Video
Python 3 for Beginners: Working with Dictionaries in Python
Welcome to this video on working with dictionaries in Python! You'll learn all about the key-value pairs and how to access and modify them using assignment and deletion. We'll also dive into how to check if a key exists in a dictionary,...
Curated Video
Python 3 for Beginners: Introduction to Booleans, Comparators, and Boolean Operators
In this video, we dive into the world of Boolean values, comparators, Boolean operators, and conditionals. You'll learn how Boolean values can only be true or false, and how comparators compare one numeric value with another to result in...
Curated Video
Python 3 for Beginners: Introduction to Python Dictionaries
Welcome to today's informative session on dictionaries in programming! Whether you're a beginner or experienced coder, this video is the perfect starting point to level up your skills. We'll unlock the mysteries of dictionaries,...
Curated Video
Python 3 for Beginners: Working with Files in Python
This video teaches the viewer basic file handling in Python, including how to open and close files, read and write data, and handle exceptions that may arise when working with files. The video explains the built-in open function and how...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 00 - Java Loops - Section Introduction
In this video, we will learn about Java loops - section introduction. This clip is from the chapter "Loops" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explain about loops - for loop, while...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 06 - If Else Problem - Implementing with Nested If Else
In this video, we will learn about if else problem - implementing with 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...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 03 - JDBC to Spring JDBC to JPA to Spring Data JPA - 10000 Feet Overview
In this lesson, let's take a look at JDBC, Spring JDBC, JPA, Spring data JPA. 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...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 11 - OPTIONAL HANDS ON - Using Docker to Launch MySQL - an Overview
In this lesson, we will launch MySQL. 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 focus on building a...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 04 - Understanding the World Before Spring Boot - 10000 Feet Overview
Let's look at how we can create the same application we created in the previous video without the Spring framework. This clip is from the chapter "Getting Started with Spring Boot" of the series "Java Programming for Complete Beginners -...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 11 - Q3 - 03 - Spring Framework - Implementing a Flow across Layers
In this session, we will continue working on our flow for the web application. We will add the Business layer. This clip is from the chapter "Getting Started with Spring Framework" of the series "Java Programming for Complete Beginners -...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 02 - Problem with Synchronized - Less Concurrency
In this session, we will learn about problem with Synchronized - less concurrency. This clip is from the chapter "More Concurrency with Concurrent Collections and Atomic Operations" of the series "Java Programming for Complete Beginners...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 13 - List and ArrayList - a Summary
In this session, we will learn about list and ArrayList - a summary. This clip is from the chapter "Collections" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explore Java collections - list...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 01 - Java Collections - Section Overview with Need for Collections
In this session, we will learn about Java collections - section overview with need for collections. This clip is from the chapter "Collections" 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 07 - Do While Loop in Java - an Introduction
In this video, we will learn about do while loop in Java - an introduction. This clip is from the chapter "Loops" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explain about loops - for loop,...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 05 - While Loop in Java - an Introduction
In this video, we will learn about while loop in Java - an introduction. This clip is from the chapter "Loops" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explain about loops - for loop,...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 10 - Selecting Loop in Java - For Versus While Versus Do While
In this video, we will learn about selecting loop in Java - for versus while versus do while. This clip is from the chapter "Loops" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explain about...
Curated Video
Python 3 for Beginners: User Input and Output (Repeating User Input)
Welcome to this Python programming tutorial where we'll explore different ways to solve the same problem. In this video, we'll be tackling Exercise #2, which involves creating a code that prompts the user for input and then repeats...
Curated Video
Python 3 for Beginners: Lists, Loops, and Exceptions Handling
This video is a tutorial that covers various aspects of working with lists in Python. It covers the basics of creating lists, accessing items using indices and negative indices, adding and removing items, and using loops to iterate...
Curated Video
Python 3 for Beginners: Introduction to Variables and Strings
In this video, we'll be diving into the world of variables and strings. By the end of this video, you'll have a clear understanding of what variables are and how to use them effectively in your code. We'll also explore the string data...
Curated Video
Python 3 for Beginners: Python Functions and Return Statements
In this video, we dive into the world of Python functions. We cover the importance of docstrings and how to create them, as well as the use of the return statement to return data from functions. We also explore the idea of functions...
Curated Video
Python 3 for Beginners: Looping Through Dictionaries in Python
In this video, you'll learn how to loop through items in a dictionary using different techniques in Python. The video explains the syntax and usage of the for loop in Python for dictionaries, as well as how to access the values of each...
Curated Video
Python 3 for Beginners: Working with Dictionaries
This educational video explains the fundamentals of Python dictionaries, a data structure that holds key value pairs. The video goes into detail on how to create, access, modify, and delete items in a dictionary, as well as how to check...
Curated Video
Intro To Python Programming - Simple Conditionals
Every program makes decisions. The coding structures used to make decisions are called conditionals. In this video, you'll learn to create simple conditional statements.