0 of 15 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 15 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Python Identifier should not starts with_____________
Python Identifier can contain
>>>1A=10 >>>print(1A)
>>>_A_1 = 10 >>>print(_A_1)
>>>Temp=23+23 >>>print(temp)
>>>a, b = 1, 2 >>>print(a + b)
>>>a, b, c = 1, 2 >>>print(a + b + c)
>>>x, y, z = 5, 3.8, (5+7j) >>>print(x + y + z)
Is it possible to use keyword as Identifier in python
Which special character is used for commenting in python
If the following line is typed in Interactive window what will be the output..?>>> “””print(“hello”)”””
If the following line is typed in Interactive window what will be the output..?>>> print(“””hello”””)
What will be the output when the following code is executed..?str1=str2=str3=3print(str1+str2+str3)
>>>a=”True” >>>b=”False” >>>a=b >>>print(a)
>>>a = 10 >>>b = 20 >>>a = a + b >>>b = a – b >>>print(a)
