Python Programming
The expression Int(x) implies that the variable x is converted to integer. State whether true or false.
True
What error occurs when you execute? apple = mango
Mango is not defined hence name error.
Operators with the same precedence are evaluated in which manner?
None.
Given a function that does not return any value, What value is thrown by default when executed in shell.
Python shell throws a NoneType object back.
Is Python case sensitive when dealing with identifiers?
Yes
Mathematical operations can be performed on a string. State whether true or false.
You can't perform mathematical operation on string even if the string is in the form: '1234...'.
What is the order of precedence in python?
For order of precedence, just remember this PEDMAS (similar to BODMAS)
What is the maximum possible length of an identifier?
Identifiers can be of any length
Why are local variable names beginning with an underscore discouraged?
As Python has no concept of private variables, leading underscores are used to indicate variables that must not be accessed from outside the class.
What is python programming?
a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991