SciShow
Is Coding a Math Skill or a Language Skill? Neither? Both?
There are aspects of computer code that look like language and some that seem more like algebra, and since we may be headed for a future where many people will need to learn to code, researchers are interested in figuring out how exactly...
PBS
Learning computer coding opens up 'endless world' for these kids
In our NewsHour Shares moment of the day, a nationwide computer science immersion program sets up shop at a couple Virginia elementary schools. The NewsHour's Student Reporting Labs has the story.
Curated Video
Express Framework Mastery: From Beginner to Advanced with Node.js - Responding with Multiple Endpoints in Node.js
New ReviewIn this video, we provide a tutorial on how to create multiple endpoints for a Node web server and respond with data to each of those endpoints. We explain why multiple endpoints are necessary for building complex web applications and...
Curated Video
Mastering HTML Buttons: Adding Interactivity to Your Website
HTML buttons are essential elements in web development, allowing users to interact with websites by triggering various actions. While the button tag itself doesn't have built-in functionality, it serves as a foundation for implementing...
Curated Video
Understanding Links in HTML: How to Create Clickable Links on the Web
Learn how to create clickable links on web pages using HTML with this concise video transcript. Discover how the A tag is utilized to connect pages, specify link text, and direct users to URLs. Perfect for beginners looking to enhance...
Curated Video
Understanding HTML Tags and Attributes
This video provides an introduction to HTML tags and attributes. It explains that HTML tags consist of a tag name enclosed in angle brackets, but attributes can also be added to provide additional information to the tag. Attributes are...
Curated Video
Is Coding the Right Career Choice for You?
This video explores the hype around coding as a valuable skill and potential career choice. It highlights the job market saturation for programmers, the dedication required to excel in coding, and the evolving nature of technology....
Curated Video
AI2 Lesson 1
The first thing you need is to create an account with the AI2 platform and you are good to go! In this video, we will be exploring the online platform to get comfortable with it.
Curated Video
AI2 Lesson 4
Complete the code with the ability to capture the user input and call the Text-To-Speech Converter. You wont stop playing with your App after that! :)
Curated Video
Python Assignment 4
In this video we discuss the Assignment 4 Question: Create a Loop that will run for THREE times. Each time the loop runs, get input from the user. Inform the user if the number entered was an Even or Odd Number. This question reviews the...
Curated Video
AI2 Lesson 5
We will now be adding a TextBox to the screen to capture the user-input. The Text-To-Speech converter will now convert this new text over to speech.
Curated Video
Python Assignment 5
In this assignment, you are required to do the following: Prompt the user to enter the number of stars to be printed. Once the value is obtained, print a square of "stars" with each row and each column having the number of stars entered...
Curated Video
Python Lesson16
In this lesson, we explore Strings. We first understand how to calculate the length of a string. We then concatenate strings together. After that, we see how we can extract subsets of a string.
Curated Video
Python Lesson17
In this lesson, we learn how to use the split and count functions for Strings.
Curated Video
Python Lesson18
In this lesson, we learn how to use the find function to search for subsets in a string. We also look at how to replace subsets in a string. Ready to be a Python Expert?
Curated Video
Python Lesson19
Now we look at the title(), upper() and lower() functions that we can use for strings. Learn how to check for the case of a string and do conversions between the different cases.
Curated Video
Python Lesson20
In this lesson, we learn how to use the format operator to dynamically change the information printed on the screen.
Curated Video
Python Assignment 7
In this assignment, you will learn how to search for the index of multiple instances of a subset in a string.
Curated Video
Python Assignment 8
This is a Number Guessing Game! Prompt the user to enter a number within the range and keep giving hints to help the player get the correct answer! A great way to revise all your basic Python concepts!
Curated Video
Python Lesson 21
Functions are a great way to modularize your code and make it easily reusable. Let's get started with Functions in Python!
Curated Video
Python Lesson 22
Learn how to create functions with multiple inputs. With this, you will be able to easily make use of functions to modularize your code.
Curated Video
Analyze how a Recursive Function Behaves!
In this video, we will relook at the recursive approach to compute the Factorial of a number. We will analyze the recursive calls in-depth to understand what is happening.