Programming Fundamentals Lab1
Programming Fundamentals Lab1
Fundamentals
LAB 1
WHAT IS PROGRAMMING…?
Programming:
• Programming is giving a set of instructions to a computer to execute.
Programming Fundamentals:
• Fundamental programming concepts include a set of basic principles and
related terminologies that programmers follow to write code that is simple to
understand, modular, and efficient.
Variables
• Variable is the name of a memory location
which stores some data.
Rules:
1) Variables are case sensitive.
2) 1st character is alphabet or ‘_’
3) No comma/blank space.
4) No other symbol other than ‘_’
Data Types