Instructional Video5:54
Curated Video

Learn and Master C Programming - Pointers and Arrays

Higher Ed
We will learn how pointers and arrays are related and how we can treat array name as a pointer in some situations. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute Beginners!".In this...
Instructional Video9:06
Curated Video

Bash Shell Scripting - declare Statement

Higher Ed
This video focusses on declare statement. This clip is from the chapter "Understanding Variables" of the series "Mastering Bash Shell Scripting: Automate your daily tasks [Updated for 2021]".This video focuses on variables.
Instructional Video13:22
Curated Video

The Modern JavaScript Bootcamp (2019) - Array Basics

Higher Ed
In this video, you’re going to learn the basics of JavaScript arrays. You’ll learn how to create new arrays and how to read items from your arrays. This clip is from the chapter "Arrays" of the series "The Modern JavaScript Bootcamp...
Instructional Video6:55
Curated Video

Excel VBA Programming The Complete Guide - Procedure Scope (Public vs. Private)

Higher Ed
Differentiate between public vs private procedure. This clip is from the chapter "Procedures" of the series "Excel VBA Programming–The Complete Guide".We look into variable scopes in procedures.
Instructional Video8:05
Curated Video

Excel VBA Programming The Complete Guide - The Object Data Type

Higher Ed
A variable supports more than just primitive data types like numbers and strings. It can also be assigned to any object in the Excel Object Model -- a Worksheet, a Workbook, etc. The design allows for code to be tighter and leaner. In...
Instructional Video11:01
Programming Electronics Academy

Function Example Two: Arduino Course 8.2

Higher Ed
A walk through of a User Defined Function in programming.
Instructional Video7:50
Packt

Object Literals

Higher Ed
JavaScript Language Fundamentals: Object Literals This clip is from the chapter "JavaScript Language Fundamentals" of the series "Modern JavaScript from the Beginning".In this section, you will learn the important fundamentals and...
Instructional Video6:07
Curated Video

Learn and Master C Programming - How to declare and use string arrays

Higher Ed
The author introduces you to arrays of strings in C/C++. This clip is from the chapter "Strings" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we work with strings and string function like...
Instructional Video9:07
Curated Video

Excel VBA Programming The Complete Guide - The Range.Font Property

Higher Ed
The Range.Font property reveals a Font object complete with its own properties and methods. In this lesson, we explore several ways we can modify a font with VBA -- its name, its size, its bolding, and more! This clip is from the chapter...
Instructional Video6:24
Curated Video

Excel VBA Programming The Complete Guide - Get Last Row of Data in Worksheet

Higher Ed
Daily reports will often have a fluctuating number of rows. In this lesson, we introduce a convenient strategy to identify the last row of data in a sheet --- starting at the bottom of the spreadsheet and navigating upwards. This clip is...
Instructional Video10:36
Curated Video

Excel VBA Programming The Complete Guide - Custom Functions

Higher Ed
In this lesson, we explore one of VBA's coolest features -- defining public custom functions that appear directly in the Excel interface.We dive into the syntax for declaring the function, identifying its expected arguments, and...
Instructional Video3:35
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 10 - Java Arrays - Using Person Objects and String Elements with Exercises

Higher Ed
In this session, we will learn about Java arrays - using person objects and string elements with exercises. This clip is from the chapter "Arrays and ArrayLists" of the series "Java Programming for Complete Beginners - Java 16".In this...
Instructional Video9:39
Curated Video

Core Java Programming Course- Arrays in Java

Higher Ed
This video explains the different arrays in Java. This clip is from the chapter "Arrays" of the series "Learn How to Code: The Complete Core Java Programming Course".This section explains arrays in Java.
Instructional Video6:27
Curated Video

The Full Stack Web Development - Summary

Higher Ed
Course Summary: Summary This clip is from the chapter "Course Summary" of the series "The Full Stack Web Development".null
Instructional Video6:15
Curated Video

C++ Developer - Project - Array Data

Higher Ed
This video presents a project on array data. This clip is from the chapter "Arrays and Vectors" of the series "The Complete C++ Developer Course".This section explains arrays and vectors.
Instructional Video11:09
Curated Video

C++ Developer - Multi-Dimensional Arrays

Higher Ed
This video focuses on multi-dimensional arrays. This clip is from the chapter "Arrays and Vectors" of the series "The Complete C++ Developer Course".This section explains arrays and vectors.
Instructional Video3:58
NASA

NASA’s InSight Lander Accomplishes Science Goals on Mars as Power Levels Diminish

K - 11th
NASA’s InSight lander touched down in the Elysium Planitia region of Mars in November of 2018. During its time on the Red Planet, InSight has achieved all its primary science goals and continues to hunt for quakes on Mars. The mission is...
Instructional Video6:41
Curated Video

Complete Modern C++ - Dynamic Memory Allocation - Part III (new[] Operator)

Higher Ed
This video explains how to create arrays on heap using the new[] operator. • Understand when to use std::optional • Modeling simple failure states or value absence • Section recap This clip is from the chapter "Memory Management – Part...
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 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 Video4:23
Curated Video

Excel VBA Programming The Complete Guide - The Parent Property on All Objects

Higher Ed
Coming full circle, we navigate from a Range object all to the way to the top of the Excel object model (the Application object) by relying on each object's Parent property. The property returns the object enclosing the current one. This...
Instructional Video4:58
Curated Video

Excel VBA Programming The Complete Guide - The String Data Type

Higher Ed
A string is a collection of characters --- in layman's terms, it's just text. In this lesson, we take a look at VBA's support for two types of strings -- variable-length and fixed-length -- as well as the advantages of both. This clip is...
Instructional Video3:38
Curated Video

Excel VBA Programming The Complete Guide - Activate a UserForm from Procedure

Higher Ed
The more we can abstract away the complexity of VBA from the regular Excel user, the better. In this lesson, we set up a graphic on our Excel interface to trigger the UserForm to appear. This clip is from the chapter "User Forms" of the...
Instructional Video8:17
Curated Video

Excel VBA Programming The Complete Guide - Workbook Events and The Sh Argument

Higher Ed
The Workbook event has its own set of event procedures. One common trend in their signatures is the presence of a Sh argument, which represents the sheet on which the event has been triggered. In this lesson, we construct a dynamic macro...