Instructional Video24:51
Curated Video

Becoming a Historian

12th - Higher Ed
Five accomplished historians describe how specific personal experiences were crucial in triggering their interest in history and inspired them to become historians. Featured are: David Cannadine (Princeton University), Linda Colley...
Instructional Video6:14
Curated Video

Make Apps with ChatGPT and Generative AI - Optimizing Prompts

Higher Ed
In this video, we will understand the other key concepts of ChatGPT before we begin creating models. You will learn about prompts, tokens, and temperature and understand them in detail. This clip is from the chapter "What Are OpenAI and...
Instructional Video7:38
Curated Video

ChatGPT for Salesforce Development - What Is ChatGPT? Features of ChatGPT

Higher Ed
In this video, we will start by explaining what ChatGPT is and its key features. You will learn how ChatGPT works and how it can help you improve your productivity and efficiency. This clip is from the chapter "Introduction to ChatGPT"...
Instructional Video3:59
Curated Video

How to Use ChatGPT and Generative AI for Passive Income - Amazon Associates Program

Higher Ed
In this video, you will learn about the Amazon Associates Program, which allows you to earn a commission by promoting products sold on Amazon. You will discover how to sign up for the program and create affiliate links to use in your...
Instructional Video8:46
Curated Video

Women Who Wow: Margarita Gonzalez

Pre-K - Higher Ed
After immigrating to America as a teenager without a strong grasp of the English language, Margarita Gonzalez created a new life for herself from almost nothing. While receiving support from others, she developed a strong work ethic,...
Instructional Video15:04
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Serialize and save Book Entity in the file

Higher Ed
This video will explore the serialization process and how to save book entities in a file for persistent storage. The serialization mechanism enables you to convert book objects into a byte stream and store them in a file for future...
Instructional Video5:29
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Save the Book Entity in a list inside Repository

Higher Ed
In this video, we will learn to store book entities in a list within the repository for efficient data storage and retrieval. This video will demonstrate the process of saving book entities, managing the list, and ensuring data...
Instructional Video7:19
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on program to Serialize and Deserialize Objects in Java

Higher Ed
In this video, we will apply our knowledge of serialization and deserialization through hands-on exercises. This video will guide us through coding tasks that involve serializing Java objects into a byte stream, writing them to a file,...
Instructional Video1:50
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Getting all information of a file like file size, etc.

Higher Ed
In this video, we will discover how to retrieve information about a file, such as its size, permissions, and other metadata. This video will explain how to use Java's file-handling APIs to access and retrieve file information, allowing...
Instructional Video2:26
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Reading Data from File using Java and Printing in Java

Higher Ed
In this video, we will learn to read data from a file in Java and print it to the console. This video will demonstrate different approaches to reading data from files, such as reading character by character, line by line, or using more...
Instructional Video5:21
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Threads in Java

Higher Ed
In this video, we will apply our knowledge of threads through hands-on exercises. We will understand how to create and manage threads, synchronize thread execution, and experience the benefits of multithreading in practical scenarios....
Instructional Video10:16
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - What is Thread and Thread Life Cycle

Higher Ed
In this video, we will learn about threads, independent units of execution in Java, their life cycle, the concept of threads, their creation, and the various states they go through during their life cycle, such as new, runnable, blocked,...
Instructional Video1:41
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Finally Block in Exception Handling - part-2

Higher Ed
In this video, we will continue building skills with the finally block through additional hands-on exercises. We will explore combining try-catch-finally blocks, handling exceptions in a controlled manner, and ensuring proper resource...
Instructional Video4:32
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Finally Block in Exception Handling - part-1

Higher Ed
In this video, we will gain practical experience with the final block through hands-on exercises and learn to use the final block to clean up resources, perform cleanup operations, and handle exceptional situations effectively. This clip...
Instructional Video3:17
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Concept of Finally Block in Exception Handling

Higher Ed
In this video, we will learn about the final block, a crucial component of exception handling in Java, and the purpose and usage of the finally block, which ensures that certain code is executed regardless of whether an exception occurs....
Instructional Video2:03
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Array Index Out of Bound Exception handling

Higher Ed
In this video, we will explore the handling of array index out-of-bounds exceptions, which occur when attempting to access elements outside the valid index range of an array, safely accessing array elements, and handling exceptions when...
Instructional Video4:16
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Null Pointer Exception Handling

Higher Ed
In this video, we will learn to handle null pointer exceptions, a common exception in Java. We will explore coding exercises that involve checking and handling null values, ensuring the proper functioning of your code in scenarios where...
Instructional Video6:18
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Arithmetic Exception Handling

Higher Ed
In this video, we will get hands-on experience handling arithmetic exceptions in Java. We will also understand the different coding tasks involving handling division by zero errors, performing calculations safely, and using appropriate...
Instructional Video3:49
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with CompareTo method in String

Higher Ed
In this video, we will deepen our understanding of string comparison by working with the compareTo method, how to use the compareTo method to compare strings lexicographically, helping you understand how strings are ordered and sorted....
Instructional Video21:40
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with String and String Functions

Higher Ed
In this video, we will gain practical experience with strings and their methods through hands-on exercises. We will explore coding tasks that involve using string functions to manipulate, compare, search, and transform strings, enhancing...
Instructional Video10:24
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Handson and Debugging for Static Concept in Java

Higher Ed
In this video, we will gain hands-on experience with static members and learn debugging techniques for resolving issues related to static variables and methods through practical exercises to deepen our understanding and troubleshoot...
Instructional Video2:56
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Making Java Program keep running

Higher Ed
In this video, we will learn techniques to keep the Java program running indefinitely using various control flow constructs and how to create continuous loops, handle user input for program termination, and implement mechanisms to...
Instructional Video3:51
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Taking User Input from Keyboard

Higher Ed
In this video, we will discover how to interact with users by taking input from your Java programs' keyboard and reading input using the Scanner class, enabling you to prompt users for information during program execution. This clip is...
Instructional Video4:13
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - If Else-If-Else in Java

Higher Ed
In this video, we will learn conditional programming by incorporating the if-else-if-else construct in Java to handle multiple conditions and execute different code blocks based on the evaluation results. This clip is from the chapter...