ASSIGNMENT 3 QUESTIONS
[Link] the origin of Python and identify the key individuals and
languages that influenced its development and Explain.
2. Analyze the model of interpreter and explain how python works in
different modes.
[Link] is the Python REPL (Read-Eval-Print Loop)? How does it work?
Explain with examples.
[Link] a simple python snippet, analyze variables, assignment and
keywords and explain them.
5. What is indentation in Python, and why is it important? How does
Python handle indentation differently from other languages?
6. Write aim, algorithm, flowchart & expected output for the program to
Find the area and circumference of circle using python.
7. Explain arithmetic, assignment, comparison, logical, and bitwise
operators in Python with examples.
[Link] a program to demonstrate the use of identity (is, is not) and
membership (in, not in) operators with appropriate examples and
comments.
9. Evaluate the order of precedence of operators in python.
10List the different types of conditional control statements and explain
them with suitable example
[Link] the working of if, elif and if-else statements with an example.
[Link] the use of break, pass and continue in a single Python
program with appropriate conditions. Explain how control flows through
the program.
[Link] a simple python snippet briefly explain the decision making
statements.
[Link] the looping statements ‘for’ and ‘while’loop with an example.
[Link] the use of *args and **kwargs in functions with an example
that uses both.
[Link] what an anonymous (lambda) function is in Python. How does
it differ from a normal function defined using def?
[Link] the different types of function arguments in Python: positional,
keyword, default, and variable-length arguments. Provide one example of
each.
[Link] does fruitful function refers to? How it can be used? Explain with
an example.
[Link] variable scope in Python with a program that uses both local
and global variables. Show how to modify a global variable from inside a
function.