Posts

Showing posts from February, 2017

Training

Image
Python training is going to be held from 27th february  2017 (Tuesday) including all the NIT club members of 3rd and 5th semester. Requirement: laptop  Time: 3-5 pm NOTE: Non NIT club member can also participate with       a registration of Rs. 50.

QUIZ DAY 1

Python Quiz: Day 1 Nihareeka IT Club day 1 quiz........ Python training Which of the following statements is true? Python is a high level programming language. Python is an interpreted language. Python is an object-oriented language. All of the above. What is used to define a block of code (body of loop, function etc.) in Python? Curly braces Parenthesis Indentation Quotation Which of the following is correct? Comments are for programmers for better understanding of the program. Python Interpreter ignores comment. You can write multi-line comments in Python using triple quotes, either ''' or """. All of the above Which of the following is correct? Variable name can start with an underscore. Variable name can start with a digit. Keywords cannot be used as a variable name. Variable name can have symbols like: @, #, $ etc. Next In the following code, n is a/an _______? >>> n='5' integer string tuple ope