Q41. Which of the following is invalid identifier?
Q42. Identifier name can be of maximum _______ character
Q43. Which of the following can not be used as an identifier?
Q44. All keywords in Python are in lower case(T/F).
Q45. Which of the following statement is calculating x raise to power n?
Q46. Write the output of the following.
m, n, p = 1, 2, 3
print(m, n, p)
Q47. Which of the following is valid operator?
Q48. Output of print(7 % 21) is _________
Q49. Operators of same precedence are executed from _________
Q50. Output of print(2 * 3 ** 2) is