Curated Video
C++ Developer - Section Overview - Fundamentals of C++
This video provides an overview of the course. This clip is from the chapter "Fundamentals of C++" of the series "The Complete C++ Developer Course".This section discusses the fundamentals of C++.
Curated Video
Bash Shell Scripting- Scope of the Variables (Global and Local Variables), Returning a variable value
This video shows how to define a scope of a variable and return its value. This clip is from the chapter "Functions" of the series "Complete Bash Shell Scripting".This section explains functions in detail.
Curated Video
C++ for Beginners - The "For" Loop
In this video, your instructor, David, discusses the "For" loop. This clip is from the chapter "Decision Making and Program Flow" of the series "C++ for Beginners".The "if", "else if", and "else" Statements
Curated Video
Complete Java SE 8 Developer Bootcamp - Creating Object Types - Part 3
Here, we use the “Car” class and also demonstrate the return feature. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented Programming which uses stack &...
Curated Video
Complete Java SE 8 Developer Bootcamp - Initialization Blocks
We can initialize an object with initialization blocks other than constructors. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented Programming which uses...
Curated Video
Complete Python Scripting for Automation - Functions with variable keyword arguments
Functions: Functions with variable keyword arguments This clip is from the chapter "Functions" of the series "Complete Python Scripting for Automation".You will learn how to define a Function, converting simple code into Functions,...
Curated Video
Complete Java SE 8 Developer Bootcamp - Garbage Collection
Java provides with garbage collection, which helps to manage memory. This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn to use static...
Curated Video
C++ Developer - Function Return Types and Parameters
This video explains function return types and parameters. This clip is from the chapter "Functions" of the series "The Complete C++ Developer Course".This section discusses the various functions in C++.
APMonitor
Java ☕ Debugging
Because computers are so exact, they are wonderful tools when you need precise measurements and control. However, this also means that they need very precise instructions. It's easy to make a little mistake in your code and throw off...
The Learning Depot
Adjective Clauses: An Adjective Clause is a Part of Speech Classed as an Adjective
An adjective clause, also known as an adjectival, or relative clause is a dependent clause that modifies a noun or a pronoun. In effect, this clause functions as one part of speech: the adjective. Adjective clauses will always begin with...
Programming Electronics Academy
Tutorial 04: Understanding Arduino Syntax: Arduino Course for Absolute Beginners (ReM)
The coding language that Arduino uses is very much like C++ ("see plus plus"), which is a rather common language in the world of computing. As I have alluded to in previous lessons, the code you learn to write for your Arduino will be...
Curated Video
Complete Java SE 8 Developer Bootcamp - Using Objects
The author defines how to access and set these features of an object. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented Programming which uses stack &...
Curated Video
Complete Java SE 8 Developer Bootcamp - Java API Documentation (Javadocs)
The author shows you where you can find the Java SE 8 Javadoc, and how to use it. This clip is from the chapter "Getting Started with Java" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you get an overview of...
Curated Video
Complete Java SE 8 Developer Bootcamp - The Object Class
Learn about overriding Object's toString, equals, and hashCode methods. This clip is from the chapter "Polymorphism" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to the unique property of polymorphism...
IDG TECHtalk
Python lists: Slicing, or obtaining portions of lists from lists
Python's slice syntax lets you take portions of object collections, such as lists. Learn how to use slices efficiently and correctly, and avoid some of the gotchas associated with slicing.
Curated Video
Excel VBA Programming The Complete Guide - Collection Objects in Real Life
Some objects in VBA are collection objects. Their purpose is to serve as a box or container for related objects. For example, the Worksheets collection object stores a Worksheet object for each worksheet in a Workbook. In this lesson, we...
Curated Video
Excel VBA Programming The Complete Guide - Introduction
We discuss the benefits offered by the technology, the tools and features available in VBA, a brief history of the language including its precursors Basic and Visual Basic and the prerequisites for the course. This clip is from the...
Curated Video
Complete Java SE 8 Developer Bootcamp - Stack and Heap
Learn how objects and method variables are represented in memory using stack and heap. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented Programming...
Curated Video
Complete Java SE 8 Developer Bootcamp - Object Type Casting
Casting changes the reference to a more specific type. This clip is from the chapter "Polymorphism" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to the unique property of polymorphism and its benefits.
Curated Video
Complete Java SE 8 Developer Bootcamp - Chaining Constructors
The author takes a leap from the “this” constructor to chaining constructors between super and subtypes. This clip is from the chapter "Inheritance" of the series "Complete Java SE 8 Developer Bootcamp".Inheritance helps to build new...
Programming Electronics Academy
Arduino code syntax: Arduino Course 3.2
A description of Arduino code syntax.
IDG TECHtalk
Python lists: The basics of a common way to store groups of objects in Python
Lists are a built-in data structure for Python for keeping together groups of objects in an ordered way. Here we'll cover the basics of the list object and how to perform common operations with it.
IDG TECHtalk
Using the short-form assignment syntax | Smart Go
Learn about Go's short-form assignment syntax, the quick way to declare variables -- how it works, and where it's most appropriate to use it in place of Go's more conventionally verbose assignment form.
Curated Video
Complete Java SE 8 Developer Bootcamp - Diamond Operator
Learn to simplify declaring parameter types with <>. This clip is from the chapter "More with Collections" of the series "Complete Java SE 8 Developer Bootcamp".In this section, learn more about limitations of collections and various...