Chapter 1 - Introduction to Programming Languages and FlowCharts
Chapter 1 - Introduction to Programming Languages and FlowCharts
Programming Languages
and FlowCharts
Outline
● Introduction to Python
● Introduction to FlowCharts
Correct
print(“hello world")
print(“Hello world")
Incorrect
print(“Hello world")print(“hello world")
Install Python3
Flow Charts
Following steps:
● Step 1: Read A, B
● Step 2: Calculate Sum
● Step 3: Print Sum
- Finding the Largest of Two Numbers: Start -> Enter two numbers -
> Compare the numbers -> Display the result -> End.
- Prime Number Check: Start -> Enter a number -> Check the
condition -> Result: Prime number or not -> End.