Data items having fixed value are called _____
1.Identifiers
2.functions
3.Keywords
4.literals
Escape sequences are treated as _____.
1.strings
2.characters
3.integers
4.none of these
Names given to different parts of a Python program are _____.
1.Identifiers
2.functions
3.Keywords
4.literals
Select the reserved keyword in Python.
1.else
2.import
3.print
4.all of these
Special meaning words of Pythons, fixed for specific functionality are called _____.
1.Identifiers
2.functions
3.Keywords
4.literals
The default separator character of print() is _____.
1.tab
2.space
3.newline
4.dot
The input() returns the value as _____ type.
1.integer
2.string
3.floating point
4.None of the these
The lines beginning with a certain character, and which are ignored by a compiler and not executed, are called _____.
1.operators
2.operands
3.functions
4.comments
To convert the read value through input() into a floating point number, _____ () is used.
1.floating
2.Float
3.int
4.integer
To convert the read value through input() into integer type, _____ () is used.
1.floating
2.float
3.int
4.integer
To give a different separator with print() _____ argument is used.
1.sep
2.separator
3.end
4.tab
To print a line a text without ending it with a newline, _____ argument is used with print()
1.sep
2.newline
3.end
4.next
Value 0.000615 is equivalent to
1.615E3
2.615E-3
3.0.615E3
4.0.615E-3
Which of the following functions print the output to the console ?
1.Output()
2.Print()
3.Echo()
4.print()
Which of the following is an escape sequence for a newline character?
1.a
2.
3.
4.
Which of the following is an escape sequence for a tab character?
1.a
2.
3.
4.
Which of the following not a legal integer type value in Python?
1.Decimal
2.Octal
3.Hexadecimal
4.Roman
Which of the following symbols are not legal in an octal value?
1.7
2.8
3.9
4.None of the above