Quiz – Software Engineer – Python & XML Quiz – Software Engineer – Python & XMLΔThis quiz will be used to assess your knowledge and problem-solving ability. Normally this quiz should take less than 30 minutes to complete.Please start this quiz if you have the time, and complete it as soon as possible as the duration will also be an evaluation criteria.Start Date / TimeFirst NameLast NameEmailCode Repository (GitHub, GitLab, other) - OPTIONALLinkedIn - OPTIONALPlease assess your English language level (reading + writting) 1 2 3 4 5 6 7 8 9 10Please assess your English language level (listening + speaking) 1 2 3 4 5 6 7 8 9 10Please assess your Python programming understanding 1 2 3 4 5 6 7 8 9 10Please assess your HTML understanding 1 2 3 4 5 6 7 8 9 10Please assess your XML understanding 1 2 3 4 5 6 7 8 9 10Please assess your problem-solving ability 1 2 3 4 5 6 7 8 9 10Please assess your VS Code experience 1 2 3 4 5 6 7 8 9 10Find the missing number in the sequence: 2, 6, 12, 20, ?, 42 36 32 38 30 28 34Which word does not belong in the group: Apple, Banana, Carrot, Mango, Orange, Grape Orange Carrot Grape Apple Mango BananaIf a clock shows 3:15, the minute hand points to 3. If it shows 6:30, where does the minute hand point? 12 5 9 6 3 1What is the next letter in the pattern: A, C, F, J, O, ? S U W V T XA train is moving at 72 km/h and is 400 meters long. How long will it take to pass a 1 km bridge? 30 sec 120 sec 90 sec 45 sec 60 sec 70 secFind the odd one out in this series: 2, 6, 12, 20, 30, 40, 56 6 12 20 2 40 30If all Bloops are Rizzles, and some Rizzles are Ploops, which of the following must be true? All Bloops are Ploops Some Ploops are Bloops Some Rizzles are Bloops All Ploops are Rizzles Some Ploops are not Bloops None is trueA shopkeeper sells apples at $0.50 each or a pack of 3 for $1.20. How much will 9 apples cost if bought in the cheapest way? $3.50 $3.60 $3.20 $3.00 $3.80 $3.40A word is coded as follows: HOUSE → IPWTF. What is the code for TABLE? VCEMF UBCMF UCEMF UDCMF VCDMF UCEPFIf BLUE = 10 and RED = 9, what is WHITE? 5 25 11 15 13 40Find the missing number in the sequence: 9, 19, 39, ?, 109 89 109 79 99 119 69 What will be the output of the following Python function when called with mystery(7, 3)? def mystery(a, b): if b == 0: return 1 if b % 2 == 0: return mystery(a * a, b // 2) return a * mystery(a * a, (b - 1) // 2) 729 49 2187 7 21 343Please give the python code for the best way you know of opening a text file called "input.txt" for reading.Please write the python libraries you used mostly.Which are your favorite VS Code keyboard shortcuts and why. Given the following XML document, what would be the correct XPath query to retrieve the price of the second book? <library> <book> <title>Python Fundamentals</title> <author>John Doe</author> <price currency="USD">29.99</price> </book> <book> <title>Advanced XML Processing</title> <author>Jane Smith</author> <price currency="EUR">39.50</price> </book> </library> /library/book[2]/price /library/book/title[2]/price //book[2]/price /library/book/price[2] //book[price='39.50']/price //library/book[2]/title/price XML Code Display Given the following XML structure, what is the correct interpretation of the document? <store> <product id="001"> <name>Laptop</name> <price currency="USD">1200.00</price> <availability>In Stock</availability> </product> <product id="002"> <name>Smartphone</name> <price currency="USD">800.00</price> <availability>Out of Stock</availability> </product> </store> The XML document stores product details like price and availability, and products are identified by the name element. The XML document stores product details like price and availability, and products are identified by the id attribute. The XML document stores customer information, and products are identified by the price element. The XML document stores product details, but it lacks a unique identifier for each product. The XML document only stores the availability of products, and no price is provided. The XML document stores price and stock information, and products are identified by the currency attribute.Submit Form