0% found this document useful (0 votes)
28 views6 pages

Introduction to Computer Programming

Programming allows people to create new things from scratch by teaching computers how to perform tasks. It involves breaking problems down step-by-step in a logical manner using various programming languages like Java, Python, Ruby, and PHP. While computers are limited in their abilities, programming gives people a kind of superpower to instruct computers to do whatever they can imagine.

Uploaded by

Juan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views6 pages

Introduction to Computer Programming

Programming allows people to create new things from scratch by teaching computers how to perform tasks. It involves breaking problems down step-by-step in a logical manner using various programming languages like Java, Python, Ruby, and PHP. While computers are limited in their abilities, programming gives people a kind of superpower to instruct computers to do whatever they can imagine.

Uploaded by

Juan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

COMPUTER PROGRAMMING

Creating things out of thin air.


Juan David Vargas Mora

Programming is one of the only things in the


world that you can do where you can sit down
and just make something completely new from
scratch. Whatever you want. - Mark Zuckerberg

What is programming?
Teaching a computer how to do what you want to do.

Computers are stupid.


Problem breakdown.
It isnt that complicated.
Its almost like a superpower.

Programming languages
// Java.

#Python

int n1 = 5;
int n2 = 3;
int n3 = n1 + n2;
[Link](n3);

n1 = 5
n2 = 2
print (n1+n2)

Programming languages
#Ruby
hour = 19
if hour > 22
puts "Go to sleep!"
else
puts "Keep kicking it!"
end

<?php
$hour = 70;
if ($hour > 22) {
echo "Go to sleep!<br/>";
}
else {
echo "Keep at it.<br/>";
}
?>

The future is now.

You might also like