इनमें से कौन सी परिभाषा मॉड्यूल का सही वर्णन करती है?<break-line><break-line>Which of these definitions correctly describes a module?
A.कुछ कार्यक्रम तत्वों के विनिर्देश प्रदान करने के लिए ट्रिपल कोट्स द्वारा अस्वीकृत/Denoted by triple quotes for providing the specification of certain program elements
B.एक कार्यक्रम में शामिल करने के लिए विशिष्ट कार्यक्षमता का डिजाइन और कार्यान्वयन/Design and implementation of specific functionality to be incorporated into a program
C.इसका उपयोग कैसे किया जाना है, इसके विनिर्देश को परिभाषित करता है/Defines the specification of how it is to be used
D.कोई भी प्रोग्राम जो कोड का पुन: उपयोग करता है/Any program that reuses code
Correct Answer: एक कार्यक्रम में शामिल करने के लिए विशिष्ट कार्यक्षमता का डिजाइन और कार्यान्वयन/Design and implementation of specific functionality to be incorporated into a program
Q12.
पैकेज से सभी मॉड्यूल आयात करने के लिए कौन सा कथन सही है?<break-line><break-line>Which statement is correct to import all modules from the package?
प्रोग्रामिंग लैंग्वेज के रूप में प्रदर्शित एल्गोरिथम __________ है।<break-line><break-line>An algorithm represented in the form of programming languages is __________.
निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code ?<break-line><break-line><pre><code>import numpy as np
a = np.array([1.1,2,3])
print(a.dtype)</code></pre>