अभी हम M3R5 का 50 प्रश्नों का ऑनलाइन प्रैक्टिस टेस्ट पार्ट-10 करने वाले है। NIELIT O Level Online Test में आपको 50 प्रश्नों के ऑनलाइन मॉक टेस्ट को करने के लिए 50 मिनटों का समय दिया जायेगा। इस O level M3-R5 Online Test 10 को करने से आप अपने O Level Exam Paper में अच्छे अंक प्राप्त करने के भागीदार बनेंगे।
M3R5 Test 50Q Set-10
Quiz-summary
0 of 50 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
Information
oLevelStudy.com के नियमों का पालन करें –
- सभी प्रश्न करने अनिवार्य है।
- प्रत्येक प्रश्न को हल करने के लिए 5 मिनट का समय निर्धारित है।
- मॉक टेस्ट खत्म होने के बाद आपके द्वारा सही-गलत किये प्रश्न जरूर जांचें।
- लीडरबॉर्ड में अपनी रैंक जरूर देखें।
- नकलची बन्दर मत बनें।
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 50 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Categories
- Not categorized 0%
oLevelStudy.com पर मॉक टेस्ट करने के लिए आपका शुक्रिया!
कृपया आपके द्वारा अगर कोई प्रश्न गलत हुआ है तो उसे अवश्य जांचें। इसके लिए आपको नीचे दिए View Question बटन को दबाना है फिर आपके द्वारा सही गलत किये प्रश्न आपको दिख जायेंगे।
LeaderBoard में अपनी रैंक देखना मत भूलें। और हाँ इस o Level Online Test को अपने दोस्तों के साथ जरूर Share कीजियेगा
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- Answered
- Review
- Question 1 of 50
1. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?for m in range(6,9):print(m, end=”)if m == 8:breakCorrectIncorrect - Question 2 of 50
2. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?for m in range(6,9):if m == 8:continueprint(m, end=”)CorrectIncorrect - Question 3 of 50
3. Question
1 pointsनिम्नलिखित में से हम किस प्रकार की लिस्ट बना सकते हैं?Which type of list can we make from the following?CorrectIncorrect - Question 4 of 50
4. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?What will be the output of the following code?‘the total number of characters’.title()CorrectIncorrect - Question 5 of 50
5. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = [15, 65, 105]n = 5 in mprint(n)CorrectIncorrect - Question 6 of 50
6. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m=18def nop():print(m)nop()CorrectIncorrect - Question 7 of 50
7. Question
1 pointsनिम्नलिखित में से किसी लिस्ट के अन्दर वाली लिस्ट को किस रूप में जाना जाता है?List within a list is known as which of the following?CorrectIncorrect - Question 8 of 50
8. Question
1 pointsनिम्नलिखित में से यदि आप पहली अनुक्रमणिका छोड़ते हैं तो स्लाइस कहाँ से प्रारंभ होता है?Where does the slice start if you skip the first index in which of the following?CorrectIncorrect - Question 9 of 50
9. Question
1 pointsनिम्नलिखित पाइथन कोड का आउटपुट क्या होगा?What will be the output of the following python code?numbers = [17, 123]numbers[1] = 5print numbersCorrectIncorrect - Question 10 of 50
10. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?What will be the output of the following code?a = [1,2,3,4,5]print(a[::2])CorrectIncorrect - Question 11 of 50
11. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?What will be the output of the following code?a = [1,2,3,4,5]print(a[::])CorrectIncorrect - Question 12 of 50
12. Question
1 pointsनिम्नलिखित में से आइटम के साथ टपल (tuple) घोषित करने के लिए कौन सही है?Which of the following is correct to declare a tuple with items?CorrectIncorrect - Question 13 of 50
13. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?def abc(m, n):print(m-n)abc(14, 5)CorrectIncorrect - Question 14 of 50
14. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?def abc(m=15, n=10, o=5):print(m * n + o)abc()CorrectIncorrect - Question 15 of 50
15. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?def abc(m, n) :return m*nprint(abc(7,3))CorrectIncorrect - Question 16 of 50
16. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?def p(m, n) :return m / no = p(50, 5)print(o)CorrectIncorrect - Question 17 of 50
17. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = {‘Listen’:’Music’, ‘Play’ : ‘Games’}n = m[‘Music’]print(n)CorrectIncorrect - Question 18 of 50
18. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = lambda n: n**3print(m(6))CorrectIncorrect - Question 19 of 50
19. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = ‘Play’n = ‘Games’print(n + m)CorrectIncorrect - Question 20 of 50
20. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = ‘Play’n=m*2print(n)CorrectIncorrect - Question 21 of 50
21. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = ‘Play Games’n = m[6]print(n)CorrectIncorrect - Question 22 of 50
22. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = ‘Play Games’n = m[7:9]print(n)ABCDCorrectIncorrect - Question 23 of 50
23. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = ‘Play Games’n = m[:]print(n)CorrectIncorrect - Question 24 of 50
24. Question
1 pointsनिम्नलिखित कथन क्या करता है?What does the following statement do?m = open(‘games.txt’, ‘r’)CorrectIncorrect - Question 25 of 50
25. Question
1 pointsनिम्नलिखित कथन क्या करता है?What does the following statement do?m = open(‘games.txt’, ‘w’)CorrectIncorrect - Question 26 of 50
26. Question
1 pointsनिम्नलिखित में से खाली टपल (tuple) कैसे बनायेंगे?How to make an empty tuple from the following?CorrectIncorrect - Question 27 of 50
27. Question
1 pointsनिम्नलिखित में से टपल (tuple) में आइटम एक इंडेक्स में _______ का उपयोग कर पहुंचा जा सकता है?In which of the following the items in a tuple can be accessed at an index using _______?CorrectIncorrect - Question 28 of 50
28. Question
1 pointsनिम्नलिखित में से किसी भी अनुक्रम पर len() फंक्शन का उपयोग किया जा सकता है जैसे-?len() function can be used on any of the following sequences like-?CorrectIncorrect - Question 29 of 50
29. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?What will be the output of the following code?tuple_a = ‘1’, ‘2’tuple_b = (‘3’, ‘4′)print(tuple_a + tuple_b)CorrectIncorrect - Question 30 of 50
30. Question
1 pointsनिम्नलिखित में से किस फंक्शन का उपयोग विशिष्ट वैल्यू और शब्दकोष से मनमाने वैल्यू को रिमूव करने के लिए किया जा सकता है?Which of the following functions can be used to remove a specific value and an arbitrary value from a dictionary?CorrectIncorrect - Question 31 of 50
31. Question
1 pointsनिम्नलिखित में से पाइथन शब्दकोष को एलिमेंट्स में डिफाइन किया गया है?Which of the following is a Python dictionary defined in Elements?CorrectIncorrect - Question 32 of 50
32. Question
1 pointsनिम्नलिखित कथन क्या करता है?What does the following statement do?x = open(‘games.txt’, ‘a’)CorrectIncorrect - Question 33 of 50
33. Question
1 pointsनिम्नलिखित में से पायथन का निर्माता कौन है?Who among the following is the creator of Python?CorrectIncorrect - Question 34 of 50
34. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = Falsen = Trueo = Falseprint(m and n and o)CorrectIncorrect - Question 35 of 50
35. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = [10, 25, 35]n = sum(m)print(n)CorrectIncorrect - Question 36 of 50
36. Question
1 pointsवरीयता क्रम में, निम्नलिखित में से कौन सा ऑपरेशन अंतिम कथन में पूरा किया जाएगा?In the order of precedence, which of the operation will be completed last in thefollowing statement?7*4+9-2/3CorrectIncorrect - Question 37 of 50
37. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = 36/4 % 2 * 5**3print(m)CorrectIncorrect - Question 38 of 50
38. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = 8/4*10 + 6 **2print(m)CorrectIncorrect - Question 39 of 50
39. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = [4, 8]print(m * 3)CorrectIncorrect - Question 40 of 50
40. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m=67n=mn = mm = 72print(m, n)CorrectIncorrect - Question 41 of 50
41. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m=2for n in range(3, 15, 5):n+= m + 2print(n)CorrectIncorrect - Question 42 of 50
42. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?What will be the output of the following code?a = {‘x’:1, ‘y’:2, ‘z’=3}a[‘z’]return:CorrectIncorrect - Question 43 of 50
43. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?What will be the output of the following code?x = {(2,4):1,(4,6):2}print(x[2,4])CorrectIncorrect - Question 44 of 50
44. Question
1 pointsनिम्नलिखित कोड का आउटपुट क्या होगा?What will be the output of the following code?a = {‘a’:1, ‘b’:2, ‘c’:3}print(a[‘a’, ‘b’])CorrectIncorrect - Question 45 of 50
45. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = Falseprint(m or not m)CorrectIncorrect - Question 46 of 50
46. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = min(50, 25, 65, 0, 99)print(m)ABGDCorrectIncorrect - Question 47 of 50
47. Question
1 pointsनिम्नलिखित कथन के बाद आउटपुट क्या होगा?What will be the output after the following statements?m = [50, 25, 65, 0, 99] listn = max(m)print(n)CorrectIncorrect - Question 48 of 50
48. Question
1 pointsनिम्नलिखित कथन के बाद कितनी बार Music मुद्रित किया जाएगा?How many times will Music be printed after the following statements?for i in range(3, 7):print(‘Music’)CorrectIncorrect - Question 49 of 50
49. Question
1 pointsपाइथन भाषा में चर डाटा टाइप होता है?What is the variable data type in Python language?CorrectIncorrect - Question 50 of 50
50. Question
1 pointsनिम्नलिखित में से पाइथन प्रोग्रामिंग का विकास किसने किया था?Who among the following developed Python programming?CorrectIncorrect
Would you like to take mock tests of other O Level Online Tests, for that click on the button below!
O Level M3-R5 ऑनलाइन टेस्ट पार्ट-10 देने के बाद, आपने खुद का मूल्यांकन किया है और O लेवल परीक्षा के लिए बेहतर तैयारी की है। इस M3-R5 Online Test Set-10 को अपने अन्य दोस्तों के साथ साझा करना न भूलें और नीचे कमेंट बॉक्स में अपनी राय अवश्य लिखें। 😊
Thank you! 💜