MCQ 11 Mark Common types of exception in python are:A SyntaxErrorB ZeroDivisionError✓ (i) and (ii) BothD None of the aboveAnswerCorrect option: C. (i) and (ii) Both (c)View full question & answer→
MCQ 21 MarkNumber of loops in python are:A4B3✓2D1AnswerCorrect option: C. 2 (c)View full question & answer→
MCQ 31 Mark The continue statement is used:✓ To pass the control to the next iterative statement.B To come out from the iteration.C To break the execution and passes the control to else statement.D To terminate the loop.AnswerCorrect option: A. To pass the control to the next iterative statement. (a)View full question & answer→
MCQ 41 MarkRelational Operator is:A AndB !✓ <D ===AnswerCorrect option: C. < (c)View full question & answer→
MCQ 51 MarkAugmented Assignment Operator is :A =*✓ +=C **D =**AnswerCorrect option: B. += (b)View full question & answer→
MCQ 61 MarkWrite the output of: x=5; y = 10; x += 2*y; print(“x=”,x, “and y=”,y)Ax=10 and y= 25B x=25 and y= 25✓ x=25 and y= 10D x=15 and y= 10AnswerCorrect option: C. x=25 and y= 10 (c)View full question & answer→
MCQ 71 MarkFloor division can be done using:A%✓ //C /D dAnswerCorrect option: B. // (b)View full question & answer→
MCQ 81 MarkSingle line comment entry can be given by:A//B $✓ #D “AnswerCorrect option: C. # (c)View full question & answer→
MCQ 91 MarkIDLE full form is:AIntegrated Development and Learning EngineB Integrated Environment✓ Integrated Development and Learning EnvironmentD International Development and Learning EnvironmentAnswerCorrect option: C. Integrated Development and Learning Environment (c)View full question & answer→
MCQ 101 MarkPython Language was first developed in ________ .AUSAB UK✓ NetherlandsD IndiaAnswerCorrect option: C. Netherlands (c)View full question & answer→