Q41. What is nested conditional? Condition within a condition Condition without an else A type of loop A type of multiple if
Q43. What is shorthand version of if-else? if condition else condition else if else if condition if condition then else
Q47. What will be the output? list(range(1, 10, 3)) [1, 4, 7] [1, 3, 6, 9] [1, 4, 7, 10] [0, 3, 6, 9]
Q50. What is nested if? Multiple loops If inside another if Loop inside loop Function inside function