Presented by Jeremy A. Cantu & Joanne N. Bruno
Graduated in 2015 with a degree in Computer Science
at Dell in Round Rock, Texas
What is code?
Code is a way to represent information, and it's our job to write code to help a computer understand that information
Where do you think you find code?
Show of hands: who here knows one language?
Who here knows two?
function sayHello(name) {
if(name !== null) {
console.log("Hello, " + name + "!");
}
}
sayHello("Jeremy"); // Outputs: "Hello, Jeremy!"
Like a hammer or a screwdriver, languages are your tools
There are languages for making websites, video games, phone apps, math, art, the list goes on!
Like a lot of things, it takes a lot of practice to become good at something, including programming