Python Assessment Test 3
- Posted by sanjith
- Categories Assessments
- Date April 20, 2020
- Comments 0 comment
21. Which one of the following is incorrect?
Correct!
Wrong!
22. If return statement is not used inside the function, the function will return:
Correct!
Wrong!
23. In which part of memory does the system stores the parameter and local variables of funtion call?
Correct!
Wrong!
24. Which one of the following is the correct way of calling a function?
Correct!
Wrong!
25. What data type is the object below ? L = [1, 23, ‘hello’, 1]
Correct!
Wrong!
26. Which module in Python supports regular expressions?
Correct!
Wrong!
27. Bitwise _________ gives 1 if either of the bits is 1 and 0 when both of the bits are 1.
Correct!
Wrong!
28. Which of the following expressions can be used to multiply a given number ‘a’ by 4?
Correct!
Wrong!
Ans : A) a<<2 29. What will be the output of the following Python expression? 4^12
Correct!
Wrong!
30. What will be the output of the following Python code snippet? X=”hi” print(“05d”%X)
Correct!
Wrong!
Python Assessment Test 3
You may also like
121. You have an azure subscription named Subscription that contains the resource groups shown in the following table. In RG1, you create a virtual machine named VM1 in the East Asia location. You plan to create a virtual network named …
131. You have an Azure App Service plan named AdatumASP1 that uses the P2v2 pricing tier. AdatumASP1 hosts Ml Azure web app named adatumwebapp1. Youneed to delegate the management of adatumwebapp1 to a group named Devs. Devs must be able …
Microsoft azure az 203 exam sample questions 4
22 April, 2020
31. You are implementing an Azure API app that uses built-in authentication and authorization functionality. All app actions must be associated with information about the current user. You need to retrieve the information about the current user. What are two …