Python Welcome to your Python_ori test. Please take this test in one sitting of 25 minutes. You can go back and forth answering questions in any order. Your time begins when you fill in your details below and click on next. Submit the test when the time is up Name Email Phone What will be the value of x in the following Python expression?x = int(43.55+2/2)43442223Mathematical operations can be performed on a string.TrueFalseWhat will be the output of the following Python code?d = {0: 'a', 1: 'b', 2: 'c'} for x in d.values(): print(d[x])0 1 2a b c0 a 1 b 2 cnone of the mentionedWhat will be the output of the following Python code?True = False while True: print(True) breakTrueFalseNonenone of the mentionedWhat will be the output of the following Python statement?>>>"a"+"bc"abcbcaabcWhat will be the output of the following Python code?i = 1 while True: if i%3 == 0: break print(i) i + = 11 21 2 3Errornone of the mentionedWhat is the answer to this expression, 22 % 3 is?7015What will be the output of the following Python code?d = {0, 1, 2} for x in d: print(d.add(x))0 1 20 1 2 0 1 2 0 1 2 …None None NoneNone of the mentionedWhich one of the following has the highest precedence in the expression?ExponentialAdditionMultiplicationParenthesesWhich one of the following has the same precedence level?Addition and SubtractionMultiplication, Division and AdditionMultiplication, Division, Addition and SubtractionAddition and MultiplicationWhich of these in not a core data type?ListsDictionaryTuplesClassWhat error occurs when you execute the following Python code snippet?apple = mangoSyntaxErrorNameErrorValueErrorTypeErrorWhat will be the output of the following Python code?x = ['ab', 'cd'] for i in x: i.upper() print(x)[‘ab’, ‘cd’][‘AB’, ‘CD’][None, None]none of the mentionedWhat will be the output of the following Python code?i = 0 while i < 5: print(i) i += 1 if i == 3: break else: print(0)0 1 2 00 1 2errornone of the mentionedWhat will be the output of the following Python statement?>>>"abcd"[2:]aabcddcWhat will be the output of the following Python code?>>> str1 = 'hello'>>> str2 = ','>>> str3 = 'world'>>> str1[-1:]ollehhellohoWhat will be the output of the following Python code?i = 0 while i < 3: print(i) i += 1 else: print(0)0 1 2 3 00 1 2 00 1 2errorEvaluate the expression given below if A = 16 and B = 15.A % B // A0.001.01What will be the output of the following Python code?x = 'abcd' for i in x: print(i) x.upper()a B C Da b c dA B C DerrorWhat will be the output of the following Python code?d = {0: 'a', 1: 'b', 2: 'c'} for i in d: print(i)0 1 2a b c0 a 1 b 2 cnone of the mentionedTime is Up! Time's up Post navigationPrevious post: C++Next post: Basic Aptitude Test – VP