Intro to Programming Lecture
Intro to Programming Lecture
• Automate tasks
• Create apps & software
• Data analysis & AI
• Lucrative career opportunities
Why 3 Languages?
• Python: Interpreted
• Java: Compiled to bytecode (JVM)
• C++: Compiled to machine code
Development Tools
• print("Hello, World!")
Hello World – Java
• #include <iostream>
• using namespace std;
• int main() {
• cout << "Hello, World!";
• return 0;
• }
Compare Syntax
• Homework:
• Install tools
• Write Hello World in each language
• Ask questions in the group/forum