Q21. Which of the following symbol is used to write comment?
Q22. Writing comments is mandatory in python programs(T/F)
Q23. Each statement in python is terminated by ________
Q24. Write the output of the following:
print('Hello, world!');print("H")
Q25. _______ spaces should be left for indentation.
Q26. What type of error is returned by the following statement?
Q27. return statement is mandatory in function definition.(T/F)
Q28. Which keyword is used to define a function in python?
Q29. Write the output of the following:
a=8
def abc(a):
print(a)
abc(7)
Q30. Statement below "function definition" begin with spaces called _______