Instructional Video2:31
Curated Video

C++ Standard Template Library in Practice - Project - Bitcoin Exchange Program

Higher Ed
The aim of this video is to tie all of what we have learned together, using a project. Our project is a Bitcoin exchange rate program, that will fetch the latest exchange rates for multiple currencies.

• We need to gather the...
Instructional Video5:48
Curated Video

Learn and Master C Programming - Using if...else...conditional statements

Higher Ed
We will look at how to use if...else conditional statements in C and understand how they work. This clip is from the chapter "Conditional Statements" of the series "Learn and Master C Programming For Absolute Beginners!".In this section,...
Instructional Video3:00
Curated Video

Java 11 Programming for Beginners 1.2: Installing Java 11 and the IntelliJ IDEA Community IDE

Higher Ed
The goal of the video is to guide the beginner to get Java 11 as well as an IDE installed. • Download and install Java 11 • Download the JetBrains Toolbar • Install IntelliJ Community Edition
Instructional Video7:50
Curated Video

Python for Network Forensics 2.4: Exploring Portable Executables

Higher Ed
In this video, we will learn about the Windows Portable Executable format. We will also learn how an attacker may be able to modify an executable to hide information. • Learn Python modules to open and read Portable Executables • Learn...
Instructional Video6:41
Packt

Advanced Computer Vision Projects 2.2: Plate Utility Functions

Higher Ed
In this video, we define several functions to aid us in extracting license plate data. • Develop function to grayscale and binarize input images • Create function to analyze possible characters • Create class to process and store...
Instructional Video3:27
Curated Video

Java 11 Programming for Beginners 4.4: Error Handling in Java 11

Higher Ed
The goal here is to acclimatize the beginner with Java’s error handling mechanisms. • Glance through theory on Java exception and the newer try-with-resource • We improve the code by avoiding errors using checks • Use try-catch to better...
Instructional Video3:41
Curated Video

Mastering Tableau 2018.1, Second Edition 7.7: Creating Ad-hoc Calculations

Higher Ed
We’ll see how to create ad hoc calculations. • Implement ad hoc calculations in Tableau
Instructional Video7:53
Curated Video

Mastering Tableau 2018.1, Second Edition 7.1: Working with Table Calculations

Higher Ed
In this video, we’ll see the working of table calculations. • Different types of calculations • Implement table calculations
Instructional Video5:20
Curated Video

Mastering Tableau 2018.1, Second Edition 7.3: Quick Table Calculations – Percent Difference and Percent of Total

Higher Ed
In this video, we’ll see percent difference and percent total.<br/>
• Understand and implement percent<br/> difference
• Understand and i<br/>mplement percent total
Instructional Video3:02
Curated Video

Cloud Native Development on Azure with Java 5.1: Introduction to Azure Kubernetes Service

Higher Ed
Before we take our cloud-native application one step further and deploy it in a containerized environment, let’s understand what Kubernetes is through this video.

• Get introduced to Kuber
netes
• Explore the advantages of...
Instructional Video10:55
Curated Video

Learn and Master C Programming - Creating Text Files using File API in C/C++

Higher Ed
We will build a sample called "CapFile" that takes as input a text file and creates (generates as output) another text file.
r/>
This clip is from the chapter "Working with Files and I/O" of the series "Learn and Master C...
Instructional Video3:33
Curated Video

Learn and Master C Programming - Working with 2D Arrays

Higher Ed
We look at an example of declaring and printing out a 2D array in C/C++.
r/>
This clip is from the chapter "Arrays" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we will look at how to...
Instructional Video1:32
Curated Video

C++ Developer - Section Overview - File Input and Output

Higher Ed
This video presents an overview of the course.<br/<br/>>

This clip is from the chapter "File Input and Output" of the series "The Complete C++ Developer Course".This section explains file input and output.
Instructional Video14:22
Curated Video

C++ Developer - Project - A Pizza Class

Higher Ed
This video presents a project in a pizza class.<br/<br/>>

This clip is from the chapter "Introduction to Classes and Objects" of the series "The Complete C++ Developer Course".This section introduces classes and objects.
Instructional Video5:21
Curated Video

Multi-Paradigm Programming with Modern C++ - Instantiating the Template

Higher Ed
When we use a template, we instantiate it. Let’s create a type that performs fixed-point arithmetic, parameterized with templates. Then let’s support that type in our math library

• Developing a fixed-point math
class
•...
Instructional Video5:27
Curated Video

Multi-Paradigm Programming with Modern C++ - Arguments and Return Values

Higher Ed
How many arguments should a function have, and how to pass them properly? There are simple ways for making the functions even better.

• How many argum
ents?
• Passing by value, by reference and
by pointer
• Return...