1.1.1. What is a Computer Programming Language?
The sequence of instructions (in the form of source code) written in a computer programming language is called a computer program.
1.1.2. The Genesis of Python
The Python programming language evolved through many versions.
1.1.3. Python Program Life Cycle
Python source code is written and saved in a file with a .py extension.
1.1.4. Difference Between Compiler and Interpreter
Compiler takes the entire block of code as a single unit to check and identify the errors in the program.
1.1.5. High-Level Language Categories
(a) XML is an example of a markup programming language.
(b) Scripting languages are used to automate frequently executed tasks.
(c) Functional programming languages use conditional expressions and recursion to perform computations.
1.1.6. Identify the Error
print("Python is Easy")
1.1.7. Identify the Error
print("Python is not Typhoon")
1.1.8. Other Usages of Print Function
# Write your code here to print the given word n times
n = int(input())
print("Abracadabra" * n)
1.1.9. Fill in the Missing Code
print("wh" "ere", "the" "re", "is", "a", "will,", "th" "ere", "is", "a", "way")
1.1.10. Features of Python
(a) Python is an interpreted language.
(b) A Python program can execute C and C++ programs also.
(c) A Python program written on a Windows operating system will also execute on a Linux operating system as it is portable.