COPA – Trade Theory Set – 08

/25
1

COPA - Trade Theory Practice Set 08

अगर आपका ट्रेड थ्योरी सब्जेक्ट एग्जाम के लिए तैयार है तो आपको यह पेपर देना चाहिए। इस पेपर में केवल ट्रेड थ्योरी के 25 प्रशन आपको मिलेगे वो भी यूनिक प्रशन। अब आपके एग्जाम की तैयारी एक स्टेप आगे रहेगी और अच्छे मार्क्स प्राप्त कर पायेंगे।

1 / 25

1. What is the extension of files created in MS-Excel 2007-2016? |
MS-Excel 2007-2016 में बनाई गई फ़ाइलों का एक्सटेंशन क्या है?

2 / 25

2. In which year Python language was developed? |
पायथॉन भाषा का विकास किस वर्ष हुआ?

3 / 25

3. Which is a valid Python if statement? |
कौन सा वैध पायथन if स्टेटमेंट है?

4 / 25

4. Which command is used to delete the entry for “john” in the given code snippet ?

d = {“john”:40, “peter”:45}
दिए गए कोड स्निपेट में “john” की प्रविष्टि को हटाने के लिए किस कमांड का उपयोग किया जाता है?

d = {“john”:40, “peter”:45}

5 / 25

5. What the sort( ) function will return if ['one', 'four', 'three', 'two'] is a list object? |
यदि ['one', 'four', 'three', 'two'] एक लिस्ट ऑब्जेक्ट है तो sort( ) फ़ंक्शन क्या रिटर्न करेगा ?

6 / 25

6. Identify the file type.
Roll Number, Name, Theory, Practical
1. Ram, 87,90
2. Sham, 68,88
3. Vijay, 90,98
फ़ाइल प्रकार की पहचान करें।
रोल नंबर, नाम, थ्योरी, प्रैक्टिकल
1. Ram, 87,90
2. Sham, 68,88
3. Vijay, 90,98

7 / 25

7. Which factor influences the severity of electrical shock? |
विद्युत झटके की गंभीरता को कौन सा कारक प्रभावित करता है?

8 / 25

8. Which is a type of database? |
कौन सा डेटाबेस का एक प्रकार है?

9 / 25

9. Which is used to input the entry and give the result in a variable in a procedure? |
किसी प्रक्रिया में प्रविष्टि को इनपुट करने और वेरिएबल में परिणाम देने के लिए किसका उपयोग किया जाता है?

10 / 25

10. Which dialog box allows you to change a field name in a PivotTable? |
कौन सा डायलॉग बॉक्स आपको PivotTable में फ़ील्ड का नाम बदलने की अनुमति देता है?

11 / 25

11. Which is the correct operator for power(ab)? |
पॉवर(ab) के लिए सही ऑपरेटर कौन सा है?

12 / 25

12. Which shortcut key prints a document? |
डॉक्यूमेंट को प्रिंट करने के लिए किस शॉर्टकट की का प्रयोग किया जाता है?

13 / 25

13. What will be the output of the following JavaScript statement?
var grand_Total=eval( "10*10+5" ); |
निम्नलिखित जावास्क्रिप्ट स्टेटमेंट का आउटपुट क्या होगा?
var grand_Total=eval( "10*10+5" );

14 / 25

14. Which is a text styling feature of MS Word? |
MS Word का टेक्स्ट स्टाइलिंग फीचर कौन सा है?

15 / 25

15. What is the full form of WWW? |
WWW का फुल फॉर्म क्या होता है?

16 / 25

16. Which keyword used in JavaScript is hoisted to the top of the block but not initialized? |
जावास्क्रिप्ट में प्रयुक्त कौन सा कीवर्ड ब्लॉक के शीर्ष पर रखा जाता है, लेकिन आरंभीकृत नहीं किया जाता?

17 / 25

17. What are the unchangable web pages called? |
अपरिवर्तनीय वेब पेजों को क्या कहा जाता है?

18 / 25

18. Which view in excel displays the pages exactly as they appear while printing ? |
एक्सेल में कौन सा व्यू पेजों को प्रदर्शित करता है बिल्कुल वैसे ही जैसे वे प्रिंटेड होने पर दिखाई देते हैं?

19 / 25

19. Which option offers a built in design through a dialog box? |
कौन सा ऑप्शन डायलॉग बॉक्स के माध्यम से निर्मित डिज़ाइन प्रदान करता है?

20 / 25

20. Which is a periodic assessment of security vulnerability in a computer system? |
कंप्यूटर सिस्टम में सुरक्षा भेद्यता का आवधिक मूल्यांकन कौन सा है?

21 / 25

21. Which type of entity is "function" and " var"? |
"function" और "var" किस प्रकार की इकाई है?

22 / 25

22. Which setting is modified to print a worksheet in letterhead? |
वर्कशीट को लेटरहेड में प्रिंट करने के लिए किस सेटिंग को संशोधित किया जाता है?

23 / 25

23. Which date is created by applying the custom date format of dd/mm/yyyy? |
dd/mm/yyyy का कस्टम डेट फॉर्मेट अप्लाई करके कौन सी तिथि बनाई जाती है?

24 / 25

24. What will be the output of the following given code?

def mk(x):
def mk1( ):
print("Decorated")
x( )
return mk1
def mk2( ):
print("Ordinary")
p = mk(mk2)
p( )
निम्नलिखित कोड का आउटपुट क्या होगा?

def mk(x):
def mk1( ):
print("Decorated")
x( )
return mk1
def mk2( ):
print("Ordinary")
p = mk(mk2)
p( )

25 / 25

25. Which is a free open-source HTML editor developed by Microsoft.? |
माइक्रोसॉफ्ट द्वारा डेवलप्ड एक फ्री ओपन-सोर्स HTML एडिटर कौन सा है?

Your score is

The average score is 4%

0%

Exit

WhatsApp और YouTube चैनल से जुड़े रहना

Leave a Comment

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

You cannot copy content of this page

Scroll to Top