Instructional Video2:01
NASA

Earth, Sun from Moon's South Pole

3rd - 11th
This visualization shows the unusual motions of Earth and the Sun as viewed from the South Pole of the Moon. The animation compresses three months (a little over three lunar days) into two minutes. The virtual camera is on the rim of...
Instructional Video5:26
Curated Video

Complete Java SE 8 Developer Bootcamp - String Operations and Operators

Higher Ed
Learn the most common methods and operations available to Strings. This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings and pass by value features of...
Instructional Video6:26
Curated Video

Complete Java SE 8 Developer Bootcamp - Getters and Setters: Part 1

Higher Ed
Getter and setters are a strategy and convention for applying encapsulation. This clip is from the chapter "Encapsulation" of the series "Complete Java SE 8 Developer Bootcamp".In this section, the author covers encapsulation as part of...
Instructional Video7:35
Curated Video

Complete Java SE 8 Developer Bootcamp - Loops

Higher Ed
Conditionals are one type of control structure. Another type allows us to continuously execute a block of a code while a condition is true. This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer...
Instructional Video8:36
Curated Video

Complete Java SE 8 Developer Bootcamp - Coding Standards

Higher Ed
Learn the conventions that most Java developers use when writing applications. This clip is from the chapter "Java Conventions and Primitives" of the series "Complete Java SE 8 Developer Bootcamp".This section gives brief overview on...
Instructional Video0:22
Curated Video

Complete Java SE 8 Developer Bootcamp - Section Overview "Introduction to Objects"

Higher Ed
An overview of the topics covered in this section. 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 & heap, objects and...
Instructional Video5:20
Curated Video

Complete Java SE 8 Developer Bootcamp - Limitations of Collections

Higher Ed
Collections are unable to store primitives. However, the Java SE API provides "wrapper" classes which enable primitive values to be added to a collection. This clip is from the chapter "More with Collections" of the series "Complete Java...
Instructional Video6:17
Curated Video

Complete Java SE 8 Developer Bootcamp - Interfaces: Part 1

Higher Ed
Learn more about interfaces, which define a role that a class can fulfill. Like abstract classes, an interface enables objects to be treated polymorphically. This clip is from the chapter "Abstract Classes and Interfaces" of the series...
Instructional Video2:50
Curated Video

Complete Java SE 8 Developer Bootcamp - Throwable

Higher Ed
A Throwable is an object that contains error or exception information. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer Bootcamp".null
Instructional Video3:00
Curated Video

Complete Java SE 8 Developer Bootcamp - Varargs

Higher Ed
Varargs allows methods to take zero or more objects. This clip is from the chapter "Arrays" of the series "Complete Java SE 8 Developer Bootcamp".In this section, author details benefits of using various types of arrays to store...
Instructional Video11:16
Curated Video

Complete Java SE 8 Developer Bootcamp - Arrays

Higher Ed
Arrays are capable of holding multiple primitives and objects that are of same polymorphic type. This clip is from the chapter "Arrays" of the series "Complete Java SE 8 Developer Bootcamp".In this section, author details benefits of...
Instructional Video5:08
Curated Video

Apache Maven Beginner to Guru - System Requirements

Higher Ed
This video explains the system requirements for Apache Maven. This clip is from the chapter "Getting Started" of the series "Apache Maven: Beginner to Guru".This section highlights the system requirements for Apache Maven, environment...
Instructional Video6:10
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 03 - Writing Multiplication Table Java Program with Eclipse

Higher Ed
In this video, we will learn about writing multiplication table Java program with Eclipse. This clip is from the chapter "Introduction to Eclipse - First Java Project" of the series "Java Programming for Complete Beginners - Java 16".In...
Instructional Video4:16
Physics Girl

Craziest eclipses in the solar system

9th - 12th
A total solar eclipse passed across North America on August 21, 2017. Are there other total solar eclipses in the solar system?
Instructional Video8:15
Curated Video

Complete Java SE 8 Developer Bootcamp - Pass By Value: Primitives

Higher Ed
This video details how primitive arguments are handled in Java. This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings and pass by value features of Java.
Instructional Video4:15
Curated Video

Complete Java SE 8 Developer Bootcamp - Finally Block

Higher Ed
Finally is an optional part of a try/catch block, which ensures that code will be run in any circumstance. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer Bootcamp".null
Instructional Video0:21
Curated Video

Complete Java SE 8 Developer Bootcamp - Section Overview "Exception Handling"

Higher Ed
Learn more on exception handling. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer Bootcamp".null
Instructional Video4:08
Curated Video

Complete Java SE 8 Developer Bootcamp - Lists

Higher Ed
A list is a collection that retains the order the objects were added to it (unless it is sorted). In addition it permits duplicate objects. Learn more about lists. This clip is from the chapter "Collections" of the series "Complete Java...
Instructional Video3:45
Curated Video

Java Programming for Complete Beginners - Java 16 - Eclipse Tip - Exploring Java API

Higher Ed
In this video, we will learn about exploring Java API. This clip is from the chapter "Reference Types" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will look into string class and understand...
Instructional Video1:40
NASA

NASA | LRO's Diviner Takes the Moon's Temperature

3rd - 11th
During the June 2011 lunar eclipse, scientists will be able to get a unique view of the moon. While the sun is blocked by the Earth, LRO's Diviner instrument will take the temperature on the lunar surface. Since different rock sizes cool...
Instructional Video6:40
Curated Video

Complete Java SE 8 Developer Bootcamp - JARs

Higher Ed
Learn how to create compressed files of applications and libraries called JARs. This clip is from the chapter "Packages" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn to create packages to avoid name...
Instructional Video8:08
Curated Video

Complete Java SE 8 Developer Bootcamp - “this”-Part 1

Higher Ed
The author shows how we can use the “this” keyword for specific instance of a class that is in focus. This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In this...
Instructional Video5:04
Curated Video

Complete Java SE 8 Developer Bootcamp - Collections

Higher Ed
Learn the basic syntax for using a collection. This clip is from the chapter "Collections" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to collections, list, sets, queues, deques and maps: - types of...
Instructional Video3:09
Curated Video

Complete Java SE 8 Developer Bootcamp - Common Array Mistakes

Higher Ed
Avoid beginner mistakes. This clip is from the chapter "Arrays" of the series "Complete Java SE 8 Developer Bootcamp".In this section, author details benefits of using various types of arrays to store information.