O Level M3-R5 July 2024 Solved Questions with Answers (Hindi-English)

Is post mein aapko milega O Level ke M3-R5 July 2024 ke 100 MCQs ka perfect solution set, jise experts ne verify kiya hai. Har question bilingual format mein diya gaya hai taaki concept clarity maximum ho. Aap is paper ko solve karke apni preparation ko 2x speed se boost kar sakte ho. Yeh content specially un logon ke liye hai jo apni accuracy improve karna chahte hain.

M3-R5 July 2024 O Level Previous Paper Question Answers

Q. 1. निम्नलिखित कोड के लिए आउटपुट क्या होगा
import numpy as np
ary = np.array([1,2,3,5,8])
ary = ary + 1
print(ary[1])
(A) 0
(B) 1
(C) 2
(D) 3
Correct Answer: (D) 3

Q. 2. बाइनरी फ़ाइल में जानकारी किस प्रारूप में होती है ?
In which format Binary file contains information ?
(A) quick response code
(B) Same format in which the data is held in memory
(C) ASCII format
(D) Unicode format
Correct Answer: (B) Same format in which the data is held in memory

Q. 3. पाइथॉन फाइल का सही एक्सटेंशन है ________
The correct extension of the Python file is ________
(A) .py
(B) .python
(C) .pyth
(D) None of these
Correct Answer: (A) .py

Q. 4. डिबगिंग सॉफ्टवेयर में ________ को ठीक करने की प्रक्रिया है।
Debugging is the process of fixing ________ in the software.
(A) procedure
(B) function
(C) bug
(D) None of these
Correct Answer: (C) bug

Q. 5. निम्नलिखित में से कौन डिक्शनरी में key tiger के लिए की- वैल्यू पेयर को डिलीट करेगा?
dic={“lion”: “wild”, “tiger”: “wild”, “cat”: “domestic”, “dog”: “domestic”}
(A) del dic[“tiger”]
(B) dic[“tiger”].delete()
(C) delete(dic.[“tiger”])
(D) del(dic.[“tiger”])
Correct Answer: (A) del dic[“tiger”]

Q. 6. निम्नलिखित पायथन कोड का आउटपुट क्या होगा ?
d1 = {“abc”:5, “def”:6, “ghi”:7}
print(d1[0])
(A) abc
(B) 5
(C) {“abc”:5}
(D) Error
Correct Answer: (D) Error

Q. 7. पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए निम्न में से किसका प्रयोग किया जाता है?
Which of the following is used to define a block of code in Python language ?
(A) try
(B) Indentation
(C) Brackets
(D) Catch
Correct Answer: (B) Indentation

Q. 8. निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
def power(x, y=2):
r=1
for i in range(y):
r = r * x
return r
print(power(3))
print(power(3,3))
(A) 212 32
(B) 9 27
(C) 567 98
(D) none of the above
Correct Answer (B) 9 27

Q. 9. लूप के अंदर की सामग्री ________ द्वारा अलग की जाती है:
The contents inside the “for loop” are separated by:
(A) colon
(B) semicolon
(C) comma
(D) hyphen
Correct Answer: (A)colon

Q. 10. निम्न में से किसमें डाटा स्थायी रूप से स्टोर किया जाता है ?
In which of the following, data is stored permanently?
(A) Variable
(B) File
(C) Both of the above
(D) None of the above
Correct Answer: (B) File

Q. 11. ________ सूचना को मानव पठनीय अर्थात ASCII या यूनिकोड वर्णों की एक स्ट्रीम के रूप में संग्रहित करती है।
A _______ stores information in the form of a stream of ASCII or Unicode characters i.e. human readable.
(A) Text file
(B) Binary file
(C) Both (A) and (B)
(D) None of these
Correct Answer: (A) Text file

Q. 12. निम्नलिखित में से कौन सा पायथन में मान्य स्ट्रिंग मैनिपुलेशन फंक्शन है?
Which of the following are valid string manipulation function in Python ?
(A) count()
(B) strip()
(C) upper()
(D) All of the above
Correct Answer: (D) All of the above

Q. 13. निम्नलिखित कथन में ‘f’ क्या है?
What is ‘f’ in the following statement?
f = open(“Data.txt”, “r”)
(A) File Handle
(B) File Name
(C) Mode of file
(D) File Handling
Correct Answer: (A) File Handle

Q. 14. ________ उपयोगकर्ता प्रलेखन का हिस्सा है।
________ is part of user documentation.
(A) Class Diagram
(B) Code Comment
(C) Use Case
(D) Installation Guide
Correct Answer: (D) Installation Guide

Q. 15. आउटपुट निर्धारित करें:
for i in range(20,30,10):
j = i/2
print(j)
(A) 10 15
(B) 10.0 15.0
(C) 10.0
(D) None of these
Correct Answer: (B) 10.0 15.0

Q. 16. What will be the output of the following ?
import numpy as np
print(np.minimum([2, 3, 4], [1, 5, 2]))
(A) [1 25]
(B) [1 52]
(C) [2 3 4]
(D) [1 3 2]
Correct Answer: (D) [1 3 2]

Q. 17. आइडेंटिफायर के साथ डील करते समय पाइथन केस सेंसिटिव होता है।
Python is a case sensitive language when dealing with identifiers.
(A) True
(B) False
(C) Sometimes
(D) Never
Correct Answer: (A) True

Q. 18. निम्नलिखित कोड का परिणाम क्या है ?
print(bool(0), bool(3.14159), bool(-3), bool(1.0+1j))
(A) True True False True
(B) False True False True
(C) False False False True
(D) False True True True
Correct Answer: (D) False True True True

Q. 19. पायथन में फाइल को ‘w’ मोड में खोलने पर x.closed का आउटपुट क्या होगा?
What will be the output of the following statements?
x = open(‘python.csv’, ‘w’)
print(x.closed)
(A) True
(B) closed
(C) open
(D) False
Correct Answer: (D) False

Q. 20. निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following statements?
x = open(‘python.csv’, ‘w’)
x.close()
print(x.closed)
(A) open
(B) True
(C) False
(D) closed
Correct Answer: (B) True

Q. 21. फाइल को ‘w’ मोड में खोलने पर x.readable() का आउटपुट क्या होगा?
What will be the output of the following statements?
x = open(‘python.csv’, ‘w’)
print(x.readable())
(A) True
(B) readable
(C) False
(D) writable
Correct Answer: (C) False

Q. 22. निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following statements?
x = open(‘python.csv’, ‘w’)
print(x.writable())
(A) True
(B) writable
(C) readable
(D) False
Correct Answer: (A) True

Q. 23. जब फाइल को append (‘a’) मोड में खोला जाता है, तो x.writable() का आउटपुट क्या होगा?
What will be the output of the following statements?
x = open(‘python.csv’, ‘a’)
print(x.writable())
(A) True
(B) False
(C) readable
(D) writable
Correct Answer: (A) True

Q. 24. निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following statements?
x = [i**2 for i in range(4)]
print(x)
(A) [0, 1, 4, 9]
(B) [1, 4, 9]
(C) [0, 1, 4, 9, 16]
(D) [0, 1, 2, 3, 4, 5]
Correct Answer: (A) [0, 1, 4, 9]

Q. 25. निम्नलिखित कथन का आउटपुट क्या होगा?
What will be the output of the following statement?
a = True
b = False
c = ‘a’ if (b == 0) else ‘b’
print(c)
(A) a
(B) True
(C) False
(D) b
Correct Answer: (A) a

Q. 26. निम्नलिखित ऑपरेशन्स में प्राथमिकता का क्रम क्या होगा?
What will be the order of precedence of operations in the following expression?
10 * 4 – 1 + 8 / 5
(A) Multiplication, Division, Addition, Subtraction
(B) Multiplication, Division, Subtraction, Addition
(C) Division, Multiplication, Subtraction, Addition
(D) Division, Multiplication, Addition, Subtraction
Correct Answer: (B) Multiplication, Division, Subtraction, Addition

Q. 27. निम्नलिखित में से कौन एक वैध वैरिएबल नाम है?
Which of the following is a valid variable name?
(A) abc 123
(B) a$1
(C) 1a
(D) a1
Correct Answer: (D) a1

Q. 28. निम्न कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
x = []
for i in range(10):
x.append(i**2)
print(x)
(A) [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
(B) [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
(C) [1, 4, 9, 16, 25, 36, 49, 64, 81]
(D) [0, 1, 2, 3, 4, 5]
Correct Answer: (A) [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

Q. 29. निम्नलिखित पंक्ति किस प्रकार की त्रुटि उत्पन्न करेगी?
What type of error will be shown after the following statement?
a = ‘Python’ + 3
(A) TypeError
(B) SyntaxError
(C) ValueError
(D) NameError
Correct Answer: (A) TypeError

Q. 30. निम्नलिखित कोड में dtype क्या होगा?
What will be output for the following code?
import numpy as np
a = np.array([2, 3, 4, 5])
print(a.dtype)
(A) int
(B) float
(C) int 32
(D) None of these
Correct Answer: (C) int 32

Q. 31. पायथन के निर्माता कौन हैं?
Who is the creator of Python?
(A) Bill Gates / बिल गेट्स
(B) Guido Van Rossum / गुइडो वैन रोसुम
(C) Jeff Bezos / जेफ बेजोस
(D) Larry Page / लेरी पेज
Correct Answer: (B) Guido Van Rossum / गुइडो वैन रोसुम

Q. 32. स्ट्रिंग को घेरने के लिए किसका उपयोग किया जाता है?
Which of the following is used to enclose strings?
(A) Single quotes / एकल कोट
(B) Double quotes / डबल उद्धरण
(C) Either single quotes or double quotes / या तो सिंगल कोट्स या डबल कोट्स
(D) ! symbol / ! चिन्ह, प्रतीक
Correct Answer: (C) Either single quotes or double quotes / या तो सिंगल कोट्स या डबल कोट्स

Q. 33. Structured program को विभाजित किया जा सकता है ताकि एक से अधिक डेवलपर उस पर कार्य कर सकें। यह विभाजन क्या कहलाता है?
Structured program can be broken into ________ to assign to more than one developer.
(A) All the above
(B) Units
(C) Segments
(D) Modules
Correct Answer: (A) All the above

Q. 34. फाइल को append मोड में खोलने पर फाइल पॉइंटर कहाँ होता है?
When we open file in append mode the file pointer is at the ________ of the file.
(A) anywhere in between the file
(B) end
(C) beginning
(D) second line of the file
Correct Answer: (B) end

Q. 35. निम्न पंक्ति का आउटपुट क्या होगा?
What will be the output of the following?
y = ‘klmn’
for i in range(len(y)):
print(y)
(A) klmn klmn klmn klmn
(B) None of the these
(C) k
(D) kkk
Correct Answer: (A) klmn klmn klmn klmn

Q. 36. नीचे दिए गए पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
Len([“hello”, 2, 4, 6])
(A) 3
(B) Error
(C) 6
(D) 4
Correct Answer: (B) Error

Q. 37. नीचे दिए गए पायथन कोड का सही आउटपुट क्या होगा?
What will be the output of the following Python code?
from math import factorial
print(math.factorial(5))
(A) Error, the statement should be print(factorial(5))
(B) Error, method factorial doesn’t exist in math module
(C) Nothing is printed
(D) 120
Correct Answer: (A) Error, the statement should be print(factorial(5))

Q. 38. इस कोड का आउटपुट क्या होगा?
What will be the output after the following statements?
a = 27/3 % 2 * 4**2
print(a)
(A) 4.0
(B) 0
(C) 32
(D) 16.0
Correct Answer: (A) 4.0

Q. 39. हार्डवेयर को चलाने के लिए निम्नलिखित में से किस सॉफ्टवेयर की आवश्यकता होती है?
Which of the following software is required to run the hardware?
(A) Task Bar
(B) Task Manager
(C) Program Manager
(D) Device Driver
Correct Answer: (D) Device Driver

Q. 40. पाइथन में निम्नलिखित में से कौन सा फ़ंक्शन बिल्ट-इन फ़ंक्शन है?
Which of the following functions is a built-in function in Python?
(A) factorial()
(B) seed()
(C) print()
(D) sqrt()
Correct Answer: (C) print()

Q. 41. कंप्यूटर सिस्टम का मस्तिष्क कौन होता है?
The brain of the computer system is ________
(A) RAM
(B) ROM
(C) CPU
(D) Control Unit
Correct Answer: (C) CPU

Q. 42. fun1() के लिए सही फंक्शन डिक्लेरेशन कौन सा है, ताकि निम्नलिखित दोनों कॉल्स को सफलतापूर्वक निष्पादित किया जा सके?
Choose the correct function declaration of fun1() so that the following two calls can be executed successfully.
fun1(25, 75, 55)
fun1(10, 20)
(A) def fun1(*kwargs)
(B) def fun1(args)
(C) No, it is not possible in Python
(D) def fun1(*data)
Correct Answer: (D) def fun1(*data)

Q. 43. निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
x = ‘abcd’
for i in x:
print(i.upper())
(A) ABCD
(B) a b c d
(C) error
(D) a BCD
Correct Answer: (A) ABCD

Q. 44. निम्नलिखित स्यूडो कोड में AND ऑपरेशन (&) के साथ आउटपुट क्या होगा?
What will be the output of the following pseudo code using & operator?
Integer a, b, c
Set b = 5, a = 1
c = a & b
Print c
(A) 1
(B) 5
(C) 7
(D) 3
Correct Answer: (A) 1

Q. 45. असेम्बली भाषा को मशीनी भाषा में बदलने के लिए किस अनुवादक का प्रयोग किया जाता है?
Which translator is used to convert assembly language into machine language?
(A) Interpreter
(B) Assembler
(C) Compiler
(D) None of these
Correct Answer: (B) Assembler

Q. 46. फाइल ऑब्जेक्ट f से एक पंक्ति प्राप्त करने के लिए कौन सा स्टेटमेंट उपयोग किया जाएगा?
Which statement will return one line from a file if f is the file object?
(A) f.read()
(B) f.line()
(C) f.readlines()
(D) f.readline()
Correct Answer: (D) f.readline()

Q. 47. किसी अन्य मॉड्यूल में मॉड्यूल का उपयोग करने के लिए कौन सा स्टेटमेंट उपयोग होता है?
To use a module in another module, which statement must be used to import it?
(A) import
(B) include
(C) both (A) and (B)
(D) none of the above
Correct Answer: (A) import

Q. 48. निम्न में से कौन एक नियंत्रण संरचना नहीं है?
Which of the following is not a control structure?
(A) Loop
(B) Process
(C) Decision
(D) None of these
Correct Answer: (B) Process

Q. 49. पैकेज से सभी मॉड्यूल इम्पोर्ट करने के लिए कौन सा कथन सही है?
Which statement is correct to import all modules from the package?
(A) from package import all
(B) from package import *
(C) from package include all
(D) from package include *
Correct Answer: (B) from package import *

Q. 50. x = 14; print(x >> 2) का आउटपुट क्या होगा?
What will be the output of the following expression?
x = 14
print(x >> 2)
(A) 14
(B) 3
(C) 1
(D) 2
Correct Answer: (B) 3

Q. 51. निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following code?
numbers = (4, 7, 19, 2, 89, 45, 72, 22)
sorted_numbers = sorted(numbers)
odd_numbers = [x for x in sorted_numbers if x % 2 != 0]
print(odd_numbers)
(A) [7, 19, 45, 89]
(B) [2, 4, 22, 72]
(C) [2, 4, 7, 19, 22, 45, 72, 89]
(D) [4, 7, 19, 2, 89, 45, 72, 22]
Correct Answer: (A) [7, 19, 45, 89]

Q. 52. फाइल पॉइंटर की वर्तमान स्थिति जानने के लिए कौन सा फंक्शन प्रयोग किया जाता है?
Which function returns the current position of the file pointer?
(A) cur()
(B) get()
(C) tell()
(D) seek()
Correct Answer: (C) tell()

Q. 53. निम्नलिखित में से कौन सा एक अवैध वेरिएबल डिक्लेरेशन है?
Which of the following declarations is incorrect?
(A) x = 2
(B) x = 3
(C) xyz = 5
(D) none of these
Correct Answer: (D) none of these

Q. 54. मॉड्यूल उपयोग करने का कौन सा लाभ नहीं है?
Which of the following is not an advantage of using modules?
(A) Provides a means of reuse of program code
(B) Provides a means of dividing up tasks
(C) Provides a means of reducing the size of the program
(D) Provides a means of testing individual parts of the program
Correct Answer: (C) Provides a means of reducing the size of the program

Q. 55. निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?
What will be the output of the following code snippet?
from math import *
a = 2.19
b = 3.999999
c = -3.30
print(int(a), floor(b), ceil(c), fabs(c))
(A) 2 3 -3 3.3
(B) 23-3 3.3
(C) 34-33
(D) 23-33
Correct Answer: (A) 2 3 -3 3.3

Q. 56. numpy array से list में बदलने के बाद x का डेटा टाइप क्या होगा?
What is the datatype of x after converting numpy array to list?
import numpy as np
a = np.array([1,2,3,4])
x = a.tolist()
(A) list
(B) tuple
(C) array
(D) int
Correct Answer: (A) list

Q. 57. निम्नलिखित कोड का आउटपुट क्या होगा?
What is the output of the following code?
import numpy as np
a = np.array([[1,2,3], [4,5,6]])
print(a.shape)
(A) (2,3)
(B) (3,2)
(C) (1,1)
(D) None of these
Correct Answer: (A) (2,3)

Q. 58. निम्न कोड का आउटपुट क्या होगा?
What will be the output of the following?
x = 123
for i in x:
print(i)
(A) 123
(B) None of these
(C) 123
(D) Error
Correct Answer: (D) Error

Q. 59. पाइथन फाइल का सही एक्सटेंशन है ________
The correct extension of the Python file is ________
(A) .pyth
(B) None of these
(C) .python
(D) .py
Correct Answer: (D) .py

Q. 60. निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
d1={“abc”:5,”def”:6,”ghi”:7}
print(d1[0])
(A) {“abc”:5}
(B) abc
(C) 5
(D) Error
Correct Answer: (D) Error

Q. 61. निम्न में से किसमें डाटा स्थायी रूप से स्टोर किया जाता है ?
In which of the following is data stored permanently?
(A) None of the above
(B) File
(C) Variable
(D) Both of the above
Correct Answer: (B) File

Q. 62. रिकर्सिव फंक्शन है ________
Recursive function is ________
(A) A function that calls itself
(B) A function that calls other functions
(C) Both (A) and (B)
(D) None of the above
Correct Answer: (A) A function that calls itself

Q. 63. लूप के अंदर की सामग्री ________ द्वारा अलग की जाती है:
The contents inside the ‘for loop’ are separated by:
(A) hyphen
(B) colon
(C) semicolon
(D) comma
Correct Answer: (B) colon

Q. 64. आउटपुट निर्धारित करें:
Determine the output:
for i in range(20,30,10):
j = i / 2
print(j)
(A) 10.0 15.0
(B) 10.0
(C) None of these
(D) 10 15
Correct Answer: (A) 10.0 15.0

Q. 65. आइडेंटिफायर के साथ डील करते समय पाइथन केस सेंसिटिव होता है।
Python is a case sensitive language when dealing with identifiers.
(A) True
(B) Never
(C) Sometimes
(D) False
Correct Answer: (A) True

Q. 66. पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए निम्न में से किसका प्रयोग किया जाता है?
Which of the following is used to define a block of code in Python language?
(A) Brackets
(B) try
(C) Indentation
(D) Catch
Correct Answer: (C) Indentation

Q. 67. निम्नलिखित में से कौन डिक्शनरी में key=tiger के लिए की-वैल्यू पेयर को डिलीट करेगा?
Which of the following will delete the key-value pair for key=tiger in the dictionary?
dic={“lion”: “wild”, “tiger”: “wild”, “cat”: “domestic”, “dog”: “domestic”}
(A) del dic[“tiger”]
(B) dic[“tiger”l.delete()
(C) delete(dic.[“tiger”l)
(D) del(dic.[“tiger”])
Correct Answer: (A) del dic[“tiger”]

Q. 68. निम्नलिखित कोड का परिणाम क्या है ?
What is the output of the following code?
print(bool(0), bool(3.14159), bool(-3), bool(1.0+1j))
(A) False True False True
(B) True True False True
(C) False True True True
(D) False False False True
Correct Answer: (C) False True True True

Q. 69. निम्नलिखित कोड के लिए आउटपुट क्या होगा?
What will be output for the following code?
import numpy as np
ary = np.array([1,2,3,5,8])
ary = ary + 1
print(ary[1])
(A) 3
(B) 2
(C) 0
(D) 1
Correct Answer: (A) 3

Q. 70. बाइनरी फ़ाइल में जानकारी किस प्रारूप में होती है ?
In which format does a binary file contain information?
(A) quick response code
(B) ASCII format
(C) Same format in which the data is held in memory
(D) Unicode format
Correct Answer: (C) Same format in which the data is held in memory

Q. 71. डिबगिंग सॉफ्टवेयर में ________ को ठीक करने की प्रक्रिया है।
Debugging is the process of fixing ________ in the software.
(A) function
(B) procedure
(C) bug
(D) None of these
Correct Answer: (C) bug

Q. 72. लिस्ट में एक एलिमेंट (5) जोड़ने के लिए किस फंक्शन का उपयोग किया जाता है?
Which function is used to add an element (5) to a list?
(A) listl.addelement(5)
(B) listl.add(5)
(C) listl.append(5)
(D) listl.sum(5)
Correct Answer: (C) listl.append(5)

Q. 73. ________ सूचना को मानव पठनीय अर्थात ASCII या यूनिकोड वर्णों की एक स्ट्रीम के रूप में संग्रहित करती है।
A ________ stores information in the form of a stream of ASCII or Unicode characters, i.e. human-readable.
(A) Text file
(B) Binary file
(C) Both (A) and (B)
(D) None of these
Correct Answer: (A) Text file

Q. 74. What will be the output of the following?
import numpy as np
print(np.minimum([2, 3, 4], [1, 5, 2]))
(A) [234]
(B) [1 25]
(C) [1 52]
(D) [1 3 2]
Correct Answer: (D) [1 3 2]

Q. 75. निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
def power(x, y=2):
r = 1
for i in range(y):
r = r * x
return r
print(power(3))
print(power(3, 3))
(A) 212 32
(B) none of the above
(C) 567 98
(D) 9 27
Correct Answer: (D) 9 27

Q. 76. ________ उपयोगकर्ता प्रलेखन का हिस्सा है।
________ is part of user documentation.
(A) Installation Guide
(B) Use Case
(C) Code Comment
(D) Class Diagram
Correct Answer: (A) Installation Guide

Q. 77. निम्नलिखित में से कौन सा पायथन में मान्य स्ट्रिंग मैनिपुलेशन फंक्शन है?
Which of the following are valid string manipulation functions in Python?
(A) count()
(B) strip()
(C) upper()
(D) All of the above
Correct Answer: (D) All of the above

Q. 78. निम्नलिखित कथन में ‘f’ क्या है?
What is ‘f’ in the following statement?
f = open(“Data.txt”, “r”)
(A) File Handle
(B) File Handling
(C) File Name
(D) Mode of file
Correct Answer: (A) File Handle

Q. 79. निम्नलिखित कोड का आउटपुट क्या होगा?
What is the output of the following code?
x = ‘abcd’
for i in range(len(x)) :
i.upper()
print(x)
(A) a b c d
(B) none of the mentioned
(C) 0 1 2 3
(D) error
Correct Answer: (B) none of the mentioned

Q. 80. print((-3)**2) का आउटपुट क्या होगा?
What is the output of print((-3)**2)?
(A) 9
(B) -6
(C) -9
(D) 6
Correct Answer: (C) -9

Q. 81. फ्लोचार्ट में वास्तविक निर्देश किस चिन्ह द्वारा दर्शाए जाते हैं?
In flowcharting, actual instructions are represented in:
(A) Boxes / डिब्बों
(B) Arrows / तीरों
(C) Circles / वृत्तों
(D) Lines / रेखाओं
Correct Answer: (A) Boxes / डिब्बों

Q. 82. CSV का पूर्ण रूप क्या होता है?
What is the full form of CSV?
(A) Comma Separation Value
(B) Common Syntax Value
(C) Comma Separated Variable
(D) Comma Separated Values
Correct Answer: (D) Comma Separated Values

Q. 83. समांतर चतुर्भुज से दर्शाई जाने वाली क्रिया को क्या कहते हैं?
The operation represented by a parallelogram is called as:
(A) Input/Output
(B) Conditions
(C) Assignment
(D) Comparison
Correct Answer: (A) Input/Output

Q. 84. किसी विशेष कार्य को दोहराने के लिए हम किसका उपयोग करते हैं?
To repeat a specific task, we use:
(A) Output / आउटपुट
(B) Loop / लूप
(C) Condition / कंडीशन
(D) Input / इनपुट
Correct Answer: (B) Loop / लूप

Q. 85. नीचे दिए गए पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
def C2F(c):
return c*9/5+32
print(C2F(100))
print(C2F(0))
(A) 212.0, 32.0
(B) 314, 24
(C) None of the above
(D) 567, 98
Correct Answer: (A) 212.0, 32.0

Q. 86. निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following code?
import numpy as np
a = np.array([1,2,1,5,8])
b = np.array([0,1,5,4,2])
c = a + b
c = c * a
print(c[2])
(A) 6
(B) None of these
(C) 10
(D) 0
Correct Answer: (A) 6

Q. 87. निम्नलिखित छद्म कोड का आउटपुट क्या होगा?
What will be the output of the following pseudo-code?
Integer a
Set a = 5
do
print a – 2
a = a – 1
vanX
while (a not equals 0)
end while
(A) 3 0
(B) infinite loop
(C) None of these
(D) 5 3 0
Correct Answer: (A) 3 0

Q. 88. नीचे दिए गए कोड का आउटपुट क्या होगा?
What is the output of the following code?
import numpy as np
a = np.array([[1,2,3],[4,5,6],[7,8,9]])
print(a.shape)
(A) (3, 3)
(B) (2, 3)
(C) (1,1)
(D) None of these
Correct Answer: (A) (3, 3)

Q. 89. निम्नलिखित में से कौन सा पायथन का कीवर्ड नहीं है?
Which of the following is not a keyword in Python?
(A) return
(B) False
(C) false
(D) in
Correct Answer: (C) false

Q. 90. निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
def say(message, times = 1):
print(message * times)
say(‘Hello’)
say(‘World’, 5)
(A) Hello WorldWorldWorldWorldWorld
(B) Hello HelloHelloHelloHelloHello
(C) Hello World, World,World,World, World
(D) Hello World5
Correct Answer: (A) Hello WorldWorldWorldWorldWorld

Q. 91. निम्नलिखित कोड क्या प्रिंट करता है?
What does the following code print?
x = ‘mohan’
for i in range(len(x)):
x[i].upper()
print(x)
(A) MOHAN
(B) mohan
(C) Error
(D) None of these
Correct Answer: (B) mohan

Q. 92. निम्नलिखित में से कौन सा कथन सबसे बाद में निष्पादित होगा?
Which of the following statement will execute in the last?
def s(n1): #Statement 1
print(n1) #Statement 2
n2 = 4 #Statement 3
s(n2) #Statement 4
(A) Statement 2
(B) Statement 4
(C) Statement 1
(D) Statement 3
Correct Answer: (A) Statement 2

Q. 93. क्या कोई एल्गोरिथ्म उचित सिंटैक्स में लिखा गया प्रोग्राम होता है?
Any algorithm is a program written according to proper syntax.
(A) True
(B) Can’t say
(C) False
(D) May be
Correct Answer: (C) False

Q. 94. यदि Python में फ़ाइल खोलते समय मोड निर्दिष्ट नहीं किया गया, तो वह किस मोड में खुलेगी?
If no mode is specified while opening a file in Python, which mode will it use by default?
(A) append
(B) read
(C) write
(D) Both read and write
Correct Answer: (B) read

Q. 95. NumPy array के data type को जानने के लिए किस attribute का उपयोग किया जाता है?
Which attribute is used to find the data type of a NumPy array?
(A) dtype
(B) numpy(type)
(C) objects.type(array)
(D) type(array)
Correct Answer: (A) dtype

Q. 96. नीचे दिए गए पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
x = 50
def func(x):
print(‘x is’, x)
x = 2
print(‘Changed local x to’, x)
func(x)
print(‘x is now’, x)
(A) x is 50Changed local x to 2x is now 2
(B) x is 50Changed local x to 2x is now 50
(C) x is 50Changed local x to 2x is now 100
(D) None of the mentioned
Correct Answer: (B) x is 50Changed local x to 2x is now 50

Q. 97. निम्नलिखित कोड का परिणाम क्या होगा?
What will be the output of the following code?
import numpy as np
a = np.array([[1,2,3]])
print(a.ndim)
(A) 0
(B) 3
(C) 1
(D) 2
Correct Answer: (D) 2

Q. 98. निम्न में से कौन सा एक बिल्ट-इन फंक्शन नहीं है?
Which of the following is not a built-in function in Python?
(A) tuple()
(B) dictionary()
(C) print()
(D) input()
Correct Answer: (B) dictionary()

Q. 99. निम्नलिखित कोड का उद्देश्य क्या है?
What is the purpose of the following code?
import numpy as np
z = [1, 2, 3]
y = np.array(z)
(A) z को list में बदलना / to convert z to list
(B) z को array में बदलना / to convert z to array
(C) उपरोक्त दोनों / Both of the above
(D) उपरोक्त में से कोई नहीं / None of the above
Correct Answer: (B) z को array में बदलना / to convert z to array

Q. 100. पायथन में एक सूची को दूसरी में कैसे कॉपी करें?
How to copy one list to another in Python?
(A) a1 = list(a2)
(B) a1 = a2.copy()
(C) a1[] = a2[:]
(D) उपरोक्त सभी / All of these
Correct Answer: (D) उपरोक्त सभी / All of these

Hope aapne M3-R5 O Level NIELIT July 2024 ke previous papers padh liye hain aur samajh bhi liya hai.

आज तक के सभी ओ-लेवल प्रीवियस पेपर्स को पढ़ना, डाउनलोड करना या मॉक टेस्ट देना है तो नीचे दिए गए बटन को दबाइये!


Kya aap M3-R5 O Level July 2024 ke previous papers ka mock test dena chahte hain?, Neeche diye gaye button par click karein.


Agar aap M3-R5 O Level July 2024 ke previous papers PDF mein download karna chahte hain?, to neeche diye gaye button par click karein.


Apna study experience humse neeche comment box mein zarur share karein. Agar aapko koi galti mile to humein batana na bhoolen. 😊

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

error: Content is protected !!
Scroll to Top