Page 1 :
C. Write True (T) or False (F)., , 1. Python is a case sensitive language. Ans. True, 2.In Python, anything written after # is printed as it is. Ans. False, 3. You need to pay to use the Python software. Ans. False, , 4, Python uses (\) character to denote that a line should continue. Ans. True, 5. You can save program in the Interactive mode of Python IDLE. Ans. False, , D. Short answer type questions., , QI. Who was the developer of Python?, Ans1. Python is a general purpose interpreted language developed by Guido, van Rossum., , Q2. Write the full form of IDLE., Ans2. IDLE is an acronym of Integrated Development Environment., , Q3. Which function is used to display result on the screen in Python?, Ans3. Print function displays the result., , E. Long answer type questions., , QI. Differentiate between interactive and script mode in Python., , Ans1. Interactive Mode, as the name suggests, allows to interact with OS. It is, convenient for the beginners to work and for testing codes., , Script mode is used to create and edit Python source file. This mode is, used for coding more than few lines, so as to save the code, modify and, reuse it., , Q2. What is Print () function? Write its syntax., , Ans2. Print() function evaluates the expression before printing it on the, monitor. It is a function, which is used to display the specified content, on the screen. Print statement outputs an entire line and then goes to, next line for subsequent output (s)., , Syntax: print (expression/constant/variable), , , , Q3. Write any three features that make Python a popular programming, language.