Scope and Modules

1 / 145

What will be the output of the following Python code if the system date is 18th June, 2017 (Sunday)?
यदि सिस्टम दिनांक 18 जून, 2017 (रविवार) है, तो निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
tday=datetime.date.today()
print(tday.weekday())

2 / 145

What will be the output of the following Python code if the system date is 18th June, 2017 (Sunday)?
यदि सिस्टम दिनांक 18 जून, 2017 (रविवार) है, तो निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import datetime
tday=datetime.date.today()
print(tday)

3 / 145

What will be the output of the following Python code if the system date is 18th August, 2016?
यदि सिस्टम दिनांक 18 अगस्त, 2016 है तो निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
tday=datetime.date.today()
print(tday.month)

4 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import datetime
d=datetime.date(2017,06,18)
print(d)

5 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import datetime
d=datetime.date(2016,7,24)
print(d)

6 / 145

What does math.sqrt(X, Y) do?
math.sqrt(X, Y) क्या करता है?

7 / 145

What is the value of x if x = math.sqrt(4)?
यदि x = math.sqrt(4) है तो x का मान क्या है?

8 / 145

What is output of print(math.pow(3, 2))?
print(math.pow(3, 2)) का आउटपुट क्या है?

9 / 145

What is returned by int(math.pow(3, 2))?
int(math.pow(3, 2)) द्वारा क्या लौटाया जाता है?

10 / 145

Which of the following aren’t defined in the math module?
निम्नलिखित में से कौन सा गणित मॉड्यूल में परिभाषित नहीं है?

11 / 145

What is the default base used when math.log(x) is found?
जब math.log(x) पाया जाता है तो डिफ़ॉल्ट आधार क्या उपयोग किया जाता है?

12 / 145

What is returned by math.expm1(p)?
math.expm1(p) द्वारा क्या लौटाया जाता है?

13 / 145

Which of the following is the same as math.exp(p)?
निम्नलिखित में से कौन-सा math.exp(p) के समान है?

14 / 145

What is the output of print(math.trunc(‘3.1’))?
print(math.trunc(‘3.1’)) का आउटपुट क्या है?

15 / 145

What is the result of math.trunc(3.1)?
math.trunc(3.1) का परिणाम क्या है?

16 / 145

What is returned by math.modf(1.0)?
math.modf(1.0) द्वारा क्या लौटाया जाता है?

17 / 145

What is the value of x if x = math.ldexp(0.5, 1)?
यदि x = math.ldexp(0.5, 1) है तो x का मान क्या है?

18 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print(math.isinf(float('-inf')))

19 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> -float('inf') + float('inf')

20 / 145

What is x if x = math.isfinite(float(‘0.0’))?
यदि x = math.isfinite(float(‘0.0’)) है तो x क्या है?

21 / 145

What is returned by math.isfinite(float(‘nan’))?
math.isfinite(float(‘nan’)) द्वारा क्या लौटाया जाता है?

22 / 145

What is returned by math.isfinite(float(‘inf’))?
math.isfinite(float(‘inf’)) द्वारा क्या लौटाया जाता है?

23 / 145

What is the result of sum([.1 for i in range(20)])?
sum([.1 for i in range(20)]) का परिणाम क्या है?

24 / 145

What is the result of math.fsum([.1 for i in range(20)])?
math.fsum([.1 for i in range(20)]) का परिणाम क्या है?

25 / 145

What does the function math.frexp(x) return?
फ़ंक्शन math.frexp(x) क्या लौटाता है?

26 / 145

What is math.floor(0o10)?
math.floor(0o10) क्या है?

27 / 145

What will be the output of print(math.factorial(4.5))?
print(math.factorial(4.5)) का आउटपुट क्या होगा?

28 / 145

What is math.factorial(4.0)?
math.factorial(4.0) क्या है?

29 / 145

What is the value of x if x = math.factorial(0)?
यदि x = math.factorial(0) है तो x का मान क्या है?

30 / 145

What is the value returned by math.fact(6)?
math.fact(6) द्वारा लौटाया गया मान क्या है?

31 / 145

Is the output of the function abs() the same as that of the function math.fabs()?
क्या फ़ंक्शन abs() का आउटपुट फ़ंक्शन math.fabs() के समान है?

32 / 145

What is displayed on executing print(math.fabs(-3.4))?
print(math.fabs(-3.4)) निष्पादित करने पर क्या प्रदर्शित होता है?

33 / 145

What will be the output of print(math.copysign(3, -1))?
print(math.copysign(3, -1)) का आउटपुट क्या होगा?

34 / 145

What is the value returned by math.floor(3.4)?
math.floor(3.4) द्वारा लौटाया गया मान क्या है?

35 / 145

What is returned by math.ceil(3.4)?
math.ceil(3.4) द्वारा क्या लौटाया जाता है?

36 / 145

What is the order of namespaces in which Python looks for an identifier?
नेमस्पेस का क्रम क्या है जिसमें पायथन एक पहचानकर्ता की तलाश करता है?

37 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
from math import factorial
print(math.factorial(5))

38 / 145

Which of the statements about modules is false?
मॉड्यूल के बारे में कौन सा कथन गलत है?

39 / 145

Which of the following is false about “from-import” form of import?
import के “from-import” रूप के बारे में निम्नलिखित में से कौन सा कथन गलत है?

40 / 145

Which of the following is false about “import modulename” form of import?
import के “import modulename” रूप के बारे में निम्नलिखित में से कौन सा कथन गलत है?

41 / 145

Which of the following is not a valid namespace?
निम्नलिखित में से कौन सा वैध नामस्थान नहीं है?

42 / 145

Which of the following isn’t true about main modules?
निम्नलिखित में से कौन सा मुख्य मॉड्यूल के बारे में सत्य नहीं है?

43 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
#mod1
def change(a):
b=[x*2 for x in a]
print(b)
#mod2
def change(a):
b=[x*x for x in a]
print(b)
from mod1 import change
from mod2 import change
#main
s=[1,2,3]
change(s)

44 / 145

All modular designs are because of a top-down design process.
सभी मॉड्यूलर डिज़ाइन एक टॉप-डाउन डिज़ाइन प्रक्रिया के कारण होते हैं।

45 / 145

In top-down design every module is broken into same number of submodules.
टॉप-डाउन डिज़ाइन में प्रत्येक मॉड्यूल को समान संख्या में सबमॉड्यूल्स में तोड़ा जाता है।

46 / 145

Which of the following is true about top-down design process?
निम्नलिखित में से कौन सा टॉप-डाउन डिज़ाइन प्रक्रिया के बारे में सत्य है?

47 / 145

_____ is a string literal denoted by triple quotes for providing the specifications of certain program elements.
______ कुछ प्रोग्राम तत्वों की विशिष्टताओं को प्रदान करने के लिए ट्रिपल कोट्स द्वारा दर्शाया गया एक स्ट्रिंग शाब्दिक है।

48 / 145

Program code making use of a given module is called a ______ of the module.
किसी दिए गए मॉड्यूल का उपयोग करने वाले प्रोग्राम कोड को मॉड्यूल का ______ कहा जाता है।

49 / 145

Which of the following is not an advantage of using modules?
निम्नलिखित में से कौन सा मॉड्यूल का उपयोग करने का लाभ नहीं है?

50 / 145

Which of these definitions correctly describes a module?
इनमें से कौन सी परिभाषा मॉड्यूल का सही वर्णन करती है?

51 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import sys
sys.argv[0]

52 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import sys
eval(sys.stdin.readline())
Computer

53 / 145

What will be the output of the following Python code? '
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import sys
eval(sys.stdin.readline())
"India"

54 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import sys
sys.stdin.readline()
Sanfoundry

55 / 145

What will be the output of the following Python code, if the sys module has already been imported?
यदि sys मॉड्यूल पहले से ही आयातित किया गया है, तो निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
sys.stdout.write("hello world")

56 / 145

What will be the output of the following Python code, if the code is run on Windows operating system?
यदि निम्नलिखित पायथन कोड को विंडोज़ ऑपरेटिंग सिस्टम पर चलाया जाए तो इसका आउटपुट क्या होगा?
import sys
if sys.platform[:2]== 'wi':
print("Hello")

57 / 145

The output of the functions len(“abc”) and sys.getsizeof(“abc”) will be the same.
फ़ंक्शन len(“abc”) और sys.getsizeof(“abc”) का आउटपुट समान होगा।

58 / 145

Which of the following functions is not defined under the sys module?
निम्नलिखित में से कौन सा फ़ंक्शन sys मॉड्यूल के अंतर्गत परिभाषित नहीं है?

59 / 145

Which of the following functions can help us to find the version of python that we are currently working on?
निम्नलिखित में से कौन सा फ़ंक्शन हमें पाइथन के उस संस्करण को खोजने में मदद कर सकता है जिस पर हम वर्तमान में काम कर रहे हैं?

60 / 145

What is the range of values that random.random() can return?
random.random() द्वारा लौटाए जा सकने वाले मानों की सीमा क्या है?

61 / 145

Which type of elements are accepted by random.shuffle()?
random.shuffle() द्वारा किस प्रकार के तत्व स्वीकार किये जाते हैं?

62 / 145

What does random.shuffle(x) do when x = [1, 2, 3]?
जब x = [1, 2, 3] हो तो random.shuffle(x) क्या करता है?

63 / 145

Which of the following will never be displayed on executing print(random.choice({0: 1, 2: 3}))?
print(random.choice({0: 1, 2: 3})) निष्पादित करने पर निम्नलिखित में से कौन सा कभी प्रदर्शित नहीं होगा?

64 / 145

Which of the following will not be returned by random.choice(“1 ,”)?
निम्नलिखित में से कौन सा random.choice(“1,”) द्वारा वापस नहीं किया जाएगा?

65 / 145

Which of the following is equivalent to random.randint(3, 6)?
निम्नलिखित में से कौन random.randint(3, 6) के समतुल्य है?

66 / 145

The function random.randint(4) can return only one of the following values. Which?
फ़ंक्शन random.randint(4) निम्नलिखित मानों में से केवल एक ही लौटा सकता है। कौन सा?

67 / 145

Which of the following is equivalent to random.randrange(3)?
निम्नलिखित में से कौन random.randrange(3) के समतुल्य है?

68 / 145

Which of the following cannot be returned by random.randrange(4)?
निम्नलिखित में से कौन सा random.randrange(4) द्वारा वापस नहीं किया जा सकता है?

69 / 145

What the does random.seed(3) return?
random.seed(3) क्या लौटाता है?

70 / 145

What will be the output of the following Python function, assuming that the random library has already been included?
यह मानते हुए कि रैंडम लाइब्रेरी पहले से ही शामिल की गई है, निम्नलिखित पायथन फ़ंक्शन का आउटपुट क्या होगा?
random.shuffle[1,2,24]

71 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
random.randrange(1,100,10)

72 / 145

The randrange function returns only an integer value.
randrange फ़ंक्शन केवल एक पूर्णांक मान लौटाता है।

73 / 145

Both the functions randint and uniform accept ____________ parameters.
दोनों फंक्शन randint और uniform ____________ पैरामीटर स्वीकार करते हैं।

74 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
random.randrange(0,91,5)

75 / 145

What is the interval of the value generated by the function random.random(), assuming that the random module has already been imported?
यह मानते हुए कि रैंडम मॉड्यूल पहले से ही आयात किया जा चुका है, random.random() फ़ंक्शन द्वारा उत्पन्न मान का अंतराल क्या है?

76 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
random.seed(3)
random.randint(1,5)
2
random.seed(3)
random.randint(1,5)

77 / 145

Which of the following functions helps us to randomize the items of a list?
निम्नलिखित में से कौन सा फ़ंक्शन हमें किसी सूची के आइटम को यादृच्छिक बनाने में मदद करता है?

78 / 145

What will be the output of the following Python function if the random module has already been imported?
यदि रैंडम मॉड्यूल पहले से ही आयात किया गया है तो निम्नलिखित पायथन फ़ंक्शन का आउटपुट क्या होगा?
random.randint(3.5,7)

79 / 145

What will be the output of the following Python function, assuming that the random module has already been imported?
यह मानते हुए कि random मॉड्यूल पहले से ही आयातित किया गया है, निम्नलिखित पायथन फ़ंक्शन का आउटपुट क्या होगा?
random.uniform(3,4)

80 / 145

What will be the output of the following Python function (random module has already been imported)?
निम्नलिखित पायथन फ़ंक्शन का आउटपुट क्या होगा (रैंडम मॉड्यूल पहले ही आयात किया जा चुका है)?
random.choice('sun')

81 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import random
random.choice([10.4, 56.99, 76])

82 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import random
random.choice(2,3,4)

83 / 145

The output of the following Python code is either 1 or 2.
निम्नलिखित पायथन कोड का आउटपुट 1 या 2 है।
import random
random.randint(1,2)

84 / 145

To include the use of functions which are present in the random library, we must use the option:
रैंडम लाइब्रेरी में मौजूद फ़ंक्शनों के उपयोग को शामिल करने के लिए, हमें विकल्प का उपयोग करना होगा:

85 / 145

State whether true or false.
बताइये कि सत्य है या असत्य।
s = time.time()
t= time.time()
s == t

86 / 145

What will be the output if we try to extract only the year from the following Python code?
यदि हम निम्नलिखित पायथन कोड से केवल वर्ष निकालने का प्रयास करें तो आउटपुट क्या होगा?
(time.struct_time(tm_year=2017, tm_mon=6, tm_mday=25, tm_hour=18, tm_min=26, tm_sec=6, tm_wday=6, tm_yday=176, tm_isdst=0))
import time
t=time.localtime()
print(t)

87 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import time
for i in range(0,5):
print(i)
time.sleep(2)

88 / 145

The sleep function (under the time module) is used to ___________
स्लीप फ़ंक्शन (टाइम मॉड्यूल के अंतर्गत) का उपयोग ___________ के लिए किया जाता है

89 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import time
t=(2010, 9, 20, 8, 45, 12, 6, 0, 0)
time.asctime(t)

90 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import time
t=(2010, 9, 20, 8, 15, 12, 6)
time.asctime(t)

91 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import time
time.asctime()

92 / 145

What will be the output of the following Python code, if the time module has already been imported?
यदि टाइम मॉड्यूल पहले ही आयात किया जा चुका है, तो निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
def num(m):
t1 = time.time()
for i in range(0,m):
print(i)
t2 = time.time()
print(str(t2-t1))

num(3)

93 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import time
time.time()

94 / 145

Which of the following functions can be used to find the coordinated universal time, assuming that the datetime module has already been imported?
यह मानते हुए कि datetime मॉड्यूल पहले से ही आयातित किया गया है, निम्नलिखित में से कौन सा फ़ंक्शन समन्वित सार्वभौमिक समय खोजने के लिए उपयोग किया जा सकता है?

95 / 145

The output of both of the print statements is the same.
दोनों प्रिंट स्टेटमेंट का आउटपुट समान है।
import datetime
dt_1 = datetime.datetime.today()
dt_2 = datetime.datetime.now()
print(dt_1)
print(dt_2)

96 / 145

What will be the output of the following Python code if the system date is: 6/19/2017
यदि सिस्टम दिनांक है: 6/19/2017 तो निम्नलिखित पायथन कोड का आउटपुट क्या होगा
tday=datetime.date.today()
tdelta=datetime.timedelta(days=10)
print(tday+tdelta)

97 / 145

Which of the following will throw an error if used after the following Python code?
निम्नलिखित में से कौन सा पायथन कोड के बाद उपयोग करने पर त्रुटि उत्पन्न करेगा?
tday=datetime.date.today()
bday=datetime.date(2017,9,18)
t_day=bday-tday

98 / 145

The value returned when we use the function isoweekday() is ______ and that for the function weekday() is ________ if the system date is 19th June, 2017 (Monday).
जब हम फ़ंक्शन isoweekday() का उपयोग करते हैं तो लौटाया गया मान ______ है और फ़ंक्शन weekday() के लिए ________ है यदि सिस्टम दिनांक 19 जून, 2017 (सोमवार) है।

99 / 145

Point out the error (if any) in the code shown below if the system date is 18th June, 2017?
यदि सिस्टम दिनांक 18 जून, 2017 है तो नीचे दिखाए गए कोड में त्रुटि (यदि कोई हो) बताएं?
tday=datetime.date.today()
bday=datetime.date(2017,9,18)
till_bday=bday-tday
print(till_bday)

100 / 145

What will be the output of the following Python code if the system date is 21st June, 2017 (Wednesday)?
यदि सिस्टम दिनांक 21 जून, 2017 (बुधवार) है, तो निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
tday=datetime.date.today()
print(tday.isoweekday())

101 / 145

Which can contain multiple lines of text
जिसमें टेक्स्ट की कई पंक्तियाँ हो सकती हैं

102 / 145

PyPI stands for
PyPI का मतलब है

103 / 145

This imports * statement import all names in the modules except those beginning wih………
यह import * कथन मॉड्यूल में सभी नामों को आयात करता है सिवाय उनके जो ……… से शुरू होते हैं

104 / 145

Arbitrary arguments have which symbol in the function definition before the parameter name?
फ़ंक्शन परिभाषा में पैरामीटर नाम से पहले मनमाने तर्कों में कौन सा प्रतीक होता है?

105 / 145

Modules are files saved with………… extension
मॉड्यूल ………… एक्सटेंशन के साथ सेव की गई फ़ाइलें हैं

106 / 145

Program code making use of a given module is called a …………of the module
किसी दिए गए मॉड्यूल का उपयोग करने वाले प्रोग्राम कोड को मॉड्यूल का ………… कहा जाता है

107 / 145

Which of the following is not a valid namespace?
निम्नलिखित में से कौन सा वैध नामस्थान नहीं है?

108 / 145

Which of these definitions correctly describes a module?
इनमें से कौन सी परिभाषा मॉड्यूल का सही वर्णन करती है?

109 / 145

Which of the following is false about “from-import” form of import?
import के “from-import” रूप के बारे में निम्नलिखित में से कौन सा कथन गलत है?

110 / 145

Which of the following statement invokes the function
निम्नलिखित में से कौन सा कथन फ़ंक्शन को आमंत्रित करता है

111 / 145

which of the following is not an advantage of using modules?
निम्नलिखित में से कौन सा मॉड्यूल का उपयोग करने का लाभ नहीं है?

112 / 145

which of the following is false about import modulename form of import?
import के import modulename फॉर्म के बारे में निम्नलिखित में से कौन सा गलत है?

113 / 145

a python variable name must:
एक पायथन वैरिएबल नाम अवश्य होना चाहिए:

114 / 145

LEGB stands for
एलईजीबी का मतलब है

115 / 145

to determine in which order python should access namespaces, you can use the
यह निर्धारित करने के लिए कि पायथन को किस क्रम में नामस्थान तक पहुंचना चाहिए, आप इसका उपयोग कर सकते हैं

116 / 145

Which module in Python supports regular expressions?
पायथन में कौन सा मॉड्यूल नियमित अभिव्यक्तियों का समर्थन करता है?

117 / 145

The copy module uses the ___________________ protocol for shallow and deep copy.
कॉपी मॉड्यूल उथली और गहरी कॉपी के लिए ___________________ प्रोटोकॉल का उपयोग करता है।

118 / 145

The module _______________ is a comparatively faster implementation of the pickle module.
मॉड्यूल _______________, पिकल मॉड्यूल का तुलनात्मक रूप से तेज़ कार्यान्वयन है।

119 / 145

Lambda functions cannot be pickled because:
लैम्ब्डा फ़ंक्शन को पिकल नहीं किया जा सकता क्योंकि:

120 / 145

If __getstate__() returns _______________ the __setstate__() module will not be called on pickling.
यदि __getstate__() _______________ लौटाता है तो __setstate__() मॉड्यूल को पिकलिंग पर कॉल नहीं किया जाएगा।

121 / 145

Which of the following cannot be pickled?
निम्नलिखित में से किसका पिकल नहीं बनाया जा सकता?

122 / 145

The pickle module defines ______ exceptions and exports _______ classes.
पिकल मॉड्यूल ______ अपवादों को परिभाषित करता है और _______ वर्गों को निर्यात करता है।

123 / 145

Which of the following functions raises an error when an unpicklable object is encountered by Pickler?
जब पिक्लर को कोई अनपिकलेबल ऑब्जेक्ट मिलता है, तो निम्नलिखित में से कौन सा फंक्शन त्रुटि उत्पन्न करता है?

124 / 145

Which of the following functions can accept more than one positional argument?
निम्नलिखित में से कौन सा फ़ंक्शन एक से अधिक स्थितीय तर्क स्वीकार कर सकता है?

125 / 145

The output of the following two Python codes is exactly the same.
निम्नलिखित दो पायथन कोडों का आउटपुट बिल्कुल समान है।
object
'a'
CODE 1
>>> pickle.dumps('a', 3)
CODE 2
>>> pickle.dumps(object, 3)

126 / 145

Which of the following functions can be used to find the protocol version of the pickle module currently being used?
वर्तमान में उपयोग किए जा रहे पिकल मॉड्यूल के प्रोटोकॉल संस्करण को खोजने के लिए निम्नलिखित में से किस फ़ंक्शन का उपयोग किया जा सकता है?

127 / 145

Which of the following Python codes will result in an error?
निम्नलिखित में से कौन सा पायथन कोड त्रुटि उत्पन्न करेगा?
object = ‘a’

128 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
pickle.HIGHEST_PROTOCOL

129 / 145

Pick the correct statement regarding pickle and marshal modules.
पिकल और मार्शल मॉड्यूल के संबंध में सही कथन चुनें।

130 / 145

To sterilize an object hierarchy, the _____________ function must be called. To desterilize a data stream, the ______________ function must be called.
किसी ऑब्जेक्ट पदानुक्रम को स्टरलाइज़ करने के लिए, _____________ फ़ंक्शन को कॉल किया जाना चाहिए। डेटा स्ट्रीम को स्टरलाइज़ करने के लिए, ______________ फ़ंक्शन को कॉल किया जाना चाहिए।

131 / 145

The process of pickling in Python includes:
पायथन में पिकलिंग की प्रक्रिया में शामिल हैं:

132 / 145

Which of the following can be used to create a symbolic link?
निम्नलिखित में से किसका उपयोग प्रतीकात्मक लिंक बनाने के लिए किया जा सकता है?

133 / 145

Which of the following can be used to create a directory?
निम्नलिखित में से किसका उपयोग directory बनाने के लिए किया जा सकता है?

134 / 145

What does os.link() do?
Os.link() क्या करता है?

135 / 145

Which of the following returns a string that represents the present working directory?
निम्नलिखित में से कौन सा एक स्ट्रिंग लौटाता है जो वर्तमान कार्यशील निर्देशिका का प्रतिनिधित्व करता है?

136 / 145

Which of the following functions can be used to read data from a file using a file descriptor?
फ़ाइल डिस्क्रिप्टर का उपयोग करके फ़ाइल से डेटा पढ़ने के लिए निम्नलिखित में से किस फ़ंक्शन का उपयोग किया जा सकता है?

137 / 145

What does os.fchmod(fd, mode) do?
Os.fchmod(fd, mode) क्या करता है?

138 / 145

What does os.close(f) do?
Os.close(f) क्या करता है?

139 / 145

What does os.getlogin() return?
Os.getlogin() क्या लौटाता है?

140 / 145

What does print(os.geteuid()) print?
print(os.geteuid()) क्या प्रिंट करता है?

141 / 145

What does os.name contain?
Os.name में क्या शामिल है?

142 / 145

The output of the function len(sys.argv) is ____________
फ़ंक्शन len(sys.argv) का आउटपुट ____________ है

143 / 145

To obtain a list of all the functions defined under sys module, which of the following functions can be used?
Sys मॉड्यूल के अंतर्गत परिभाषित सभी फ़ंक्शनों की सूची प्राप्त करने के लिए, निम्नलिखित में से कौन सा फ़ंक्शन उपयोग किया जा सकता है?

144 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import sys
sys.argv

145 / 145

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
import sys
sys.stderr.write(“hello”)

Your score is

The average score is 0%

0%