Instructional Video7:14
Curated Video

C++ Programming By Example - Creating a Basic GUI in Qt Creator

Higher Ed
How to use Qt Creator to make a basic GUI? • Open the *.ui file in Qt Creator • Add the QPlainTextEdit widget to the UI • Arrange the layout contents vertically and add menu items This clip is from the chapter "Qt Signals and Slots:...
Instructional Video11:27
Curated Video

C++ Programming By Example - Adding Search Functionality

Higher Ed
How can you add search functionality to the application? • Learn what algorithms could be used from the STL • Implement search by book title • Experiment with search by author This clip is from the chapter "Building a Library Management...
Instructional Video5:29
Curated Video

C++ Programming By Example - The Course Overview

Higher Ed
This video provides an overview of the entire course. This clip is from the chapter "Introduction to C++ and Qt" of the series "C++ Programming By Example".In this section, we introduce C++ and Qt and get the development environment set...
Instructional Video3:09
Curated Video

TypeScript for Beginners - Returning a Function

Higher Ed
This video demonstrates how to return a function. This clip is from the chapter "Functions" of the series "TypeScript for Beginners".This section introduces you to functions and explains how to use them.
Instructional Video4:28
Curated Video

TypeScript for Beginners - Using Arrays

Higher Ed
This video demonstrates how to use arrays. This clip is from the chapter "Objects and Arrays" of the series "TypeScript for Beginners".This section introduces you to objects and arrays and demonstrates how to use them.
Instructional Video2:27
Curated Video

TypeScript for Beginners - De-Structuring Objects

Higher Ed
This video demonstrates how to de-structure objects. This clip is from the chapter "Objects and Arrays" of the series "TypeScript for Beginners".This section introduces you to objects and arrays and demonstrates how to use them.
Instructional Video0:59
Curated Video

Java Programming for Complete Beginners - Java 16 - Do not Use Modules for Now

Higher Ed
In this video, the author recommends not to create modules as it will be discussed later in the course. This clip is from the chapter "Introduction to Eclipse - First Java Project" of the series "Java Programming for Complete Beginners -...
Instructional Video3:52
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 04 - Adding More Methods for Multiplication Table Program

Higher Ed
In this video, we will learn about adding more methods for multiplication table program. This clip is from the chapter "Introduction to Eclipse - First Java Project" of the series "Java Programming for Complete Beginners - Java 16".In...
Instructional Video5:38
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 02 - Java Class and Object - First Look

Higher Ed
In this video, we will learn about Java class and object - first look. This clip is from the chapter "Introduction to the Java Platform" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will look into...
Instructional Video1:08
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 00 - Section 03 - Overview of the Java Platform - Section Overview

Higher Ed
In this video, we will see an overview of the Java platform - section overview. This clip is from the chapter "Introduction to the Java Platform" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will...
Instructional Video1:07
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 00 - Section 02 - Methods - an Introduction

Higher Ed
This video talks about methods - an introduction. This clip is from the chapter "Introduction to Method with Multiplication Table" of the series "Java Programming for Complete Beginners - Java 16".Here, we will explore the Java platform...
Instructional Video1:29
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 01 - Introduction to Multiplication Table Challenge

Higher Ed
This video talks about the multiplication table challenge. This clip is from the chapter "Introduction to Java Programming with JShell Using Multiplication Table" of the series "Java Programming for Complete Beginners - Java 16".In this...
Instructional Video6:09
Curated Video

Java Programming for Complete Beginners - Java 16 - Java Tip 03 - Equals Method

Higher Ed
In this session, we will learn about the equals method. 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, access...
Instructional Video2:50
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 03 - Installing Java – Linux

Higher Ed
In this lesson, we will learn how to install Java for Linux systems. This clip is from the chapter "Installing Java" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will install Java and set a path...
Instructional Video0:52
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 00 - Installing Java - Overview

Higher Ed
This video provides an overview of the entire section. This clip is from the chapter "Installing Java" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will install Java and set a path for environment...
Instructional Video7:32
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 04 - Generics Puzzles - Restrictions with Extends and Generic Methods

Higher Ed
In this session, we will learn about generics puzzles - restrictions with extends and generic methods. This clip is from the chapter "Generics" of the series "Java Programming for Complete Beginners - Java 16".In this section, we explore...
Instructional Video4:55
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 09 - Inheritance and Overriding - with toString() Method

Higher Ed
In this session, we will learn about inheritance and overriding - with the toString() method. This clip is from the chapter "Object-Oriented Programming Again" of the series "Java Programming for Complete Beginners - Java 16".In this...
Instructional Video5:26
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 01 - Understanding the Need and Basics about an Array

Higher Ed
In this session, we will understand the need and basics about an array. This clip is from the chapter "Arrays and ArrayLists" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explore Java Array...
Instructional Video9:04
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 06 - While Loop - Exercises - Cubes and Squares Upto Limit

Higher Ed
In this video, we will learn about while loop - exercises - cubes and squares upto limit. This clip is from the chapter "Loops" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will explain about...
Instructional Video2:23
Curated Video

Java Programming for Complete Beginners - Java 16 - Eclipse Tip - Templates - sysout, main, fore, ifelse

Higher Ed
In this video, we will learn about Eclipse Tip - Templates - sysout, main, fore, ifelse. 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...
Instructional Video3:48
Curated Video

C++ Programming By Example - Differences Between Classes and Structures

Higher Ed
What is the difference between a class and a structure? • Understand that they basically do the same thing • Default access modifier for classes is private. For structures, it’s public • Structures are still around to preserve C...
Instructional Video10:45
Curated Video

C++ Programming By Example - Adding Test Data

Higher Ed
How to add test data to the application? • Define basic data in code • Add a test .csv file with fake data • Edit the .csv file to see how the library works This clip is from the chapter "Building a Library Management System" of the...
Instructional Video18:56
Curated Video

C++ Programming By Example - A Deeper Dive into std::vector

Higher Ed
What is the proper use of std::vector? • Analyze cppreference to show nuances of using std::vector • Show the difference between push_back and emplace_back • Understand the “proper” ways to initialize a std::vector This clip is from the...
Instructional Video2:27
Curated Video

TypeScript for Beginners - Introduction - Objects and Arrays

Higher Ed
This video provides an overview of what you will learn in this section. This clip is from the chapter "Objects and Arrays" of the series "TypeScript for Beginners".This section introduces you to objects and arrays and demonstrates how to...