COPA Practice Paper

/375
5

यह पेपर 2 घंटे का है 2 घंटे बाद पेपर अपने आप सबमिट हो जायेगा और आप चाहें तो 2 घंटे से पहले भी सबमिट कर सकते है| पेपर देने के लिए आपको हमारी वेबसाइट पर login करना अनिवार्य है|

सॉरी समय समाप्त हो गया|


COPA All Trade Theory Questions

1 / 375

1. Which command displays numbers and text on the screen? |
कौन सा कमांड स्क्रीन पर संख्याएं और टेक्स्ट प्रदर्शित करता है?

2 / 375

2. What will be the output of the following Python code snippet? | निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा?
total={ }
def insert(items):
if items in total:
total[items] += 1
else:
total[items] = 1
insert('Apple')
insert('Ball')
insert('Apple')
print (len(total))

3 / 375

3. What is the extension of Notepad file? |
नोटपैड फाइल का एक्सटेंशन क्या होता है?

4 / 375

4. Which entity does a failed method overriding call the method of? |
एक विफल विधि ओवरराइडिंग किस इकाई की विधि को कॉल करती है?

5 / 375

5. Which variable declared outside a function in Javascript? |
जावास्क्रिप्ट में एक फ़ंक्शन के बाहर कौन सा वेरिएबल घोषित किया गया?

6 / 375

6. Which of the following CSS property sets the background image of an element? |
निम्नलिखित में से कौन CSS प्रॉपर्टी किसी एलिमेंट के बैक ग्राउंड इमेज को सेट करती है?

7 / 375

7. What are the directories under the root directory are called? |
रूट डायरेक्टरी के अंतर्गत आने वाली डायरेक्टरी को क्या कहते हैं?

8 / 375

8. What will a class inheriting from an abstract class be known? |
एक abstract class से इन्हेरीटिंग में प्राप्त क्लास को क्या ज्ञात होगा?

9 / 375

9. What is a desktop and personal computer also called? |
डेस्कटॉप और पर्सनल कंप्यूटर को _____ भी कहा जाता है।

10 / 375

10. Which phase designs and characterize the data needs of the database users? |
कौन सा चरण डेटाबेस उपयोगकर्ताओं की डेटा आवश्यकताओं को डिज़ाइन और चिह्नित करता है?

11 / 375

11. Which collection of operations form a single logical unit of work? |
कौन से ऑपरेशन का कलेक्शन कार्य की एक लॅजिकल यूनिट बनाता है?

12 / 375

12. Which is a valid js code to sort element of an array trade? |
किसी ऐरे ट्रेड के एलीमेंट को सॉर्ट करने के लिए एक वैध js कोड कौन सा है?

13 / 375

13. Which dialog box give a warning message to the users? |
कौन सा डायलॉग बॉक्स यूजर्स को चेतावनी संदेश देता है?

14 / 375

14. In which sequence computer operates? |
कम्प्यूटर किस क्रम में संचालित होता है?

15 / 375

15. Why query should be executed sucessfully on a existing view? |
मौजूदा व्यू पर क्वेरी को सफलतापूर्वक निष्पादित क्यों किया जाना चाहिए?

16 / 375

16. Which system is used by Bluetooth for Broadcasting? |
ब्राडकास्टिंग के लिए ब्लूटूथ द्वारा किस सिस्टम का उपयोग किया जाता है?

17 / 375

17. What is Cookies? | Cookies क्या है?

18 / 375

18. Which tag is use to terminate the current sequence in switch statement? |
स्विच स्टेटमेंट में करेंट सीक्वेंसी को समाप्त करने के लिए किस टैग का उपयोग किया जाता है?

19 / 375

19. What type of device is a scanner? |
स्कैनर किस प्रकार की डिवाइस है?

20 / 375

20. What is the output of print('%x, %X' % (15, 15))? | प्रिंट ('% x, % X' % (15, 15)) का आउटपुट क्या है?

21 / 375

21. Which multimedia application was developed using Python? |
पायथन का उपयोग करके कौन सा मल्टीमीडिया एप्लिकेशन विकसित किया गया था?

22 / 375

22. What will be the output of the following Python code snippet if x=1? | यदि x=1 है तो निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा?
X < < 2

23 / 375

23. Which method joins all array element into string with specified separator? | निर्दिष्ट सेपरेटर के साथ स्ट्रिंग में सभी ऐरे एलिमेंट किस विधि से जुड़ते हैं?

24 / 375

24. Which is a core data type in Python programming? | पायथन प्रोग्रामिंग में कोर डेटा प्रकार कौन सा है?

25 / 375

25. What is the function of list.pop( )? | List.pop( ) का कार्य क्या है?

26 / 375

26. Which are TCL commands? | TCL कमांड कौन से हैं?

27 / 375

27. What is the capacity of a typical DVD? | Typical DVD की कैपेसिटी क्या है?

28 / 375

28. Which has the highest precedence in the expression? |
अभिव्यक्ति में किसकी प्राथमिकता सबसे अधिक है?

29 / 375

29. What is the data type of print (type(0xFF))? | प्रिंट (type(0xFF)) का डेटा टाइप क्या है?

30 / 375

30. What does the following code print to console? | निम्नलिखित कोड कंसोल पर क्या प्रिंट करता है?
if True:
print(1001)
else:
print(2002)

31 / 375

31. Which character gives single-line comments in Python? |
पायथन में कौन सा कैरेक्टर सिंगल -लाइन कमेंट (टिप्पणियाँ) देता है?

32 / 375

32. Which term collectively refers to malicious software, such as viruses, worms and trojans? | कौन सा शब्द सामूहिक रूप से दुर्भावनापूर्ण सॉफ़्टवेयर, जैसे वायरस, वर्म्स और ट्रोजन को संदर्भित करता है?

33 / 375

33. What is the full form of DOM? | DOM का पूर्ण रूप क्या है?

34 / 375

34. What is the standard file extension of scan image? | स्कैन इमेज का मानक फाइल एक्सटेंशन क्या है?

35 / 375

35. Which is an example for OS? | OS के लिए कौन सा उदाहरण है?

36 / 375

36. What happens while trying to retrieve a value using the expression d[“susan”] in the following code?
d = {“ajay”:40, “vijay”:45} |
निम्नलिखित कोड में अभिव्यक्ति d[“susan”] का उपयोग करके मान प्राप्त करने का प्रयास करते समय क्या होता है?
d = {“ajay”:40, “vijay”:45}

37 / 375

37. What is current? | करंट क्या है?

38 / 375

38. Which process involves one class acquiring the properties (methods and fields) of another? |
कौन सी प्रक्रिया में एक क्लास दूसरे क्लास के गुण (तरीके और क्षेत्र) को प्राप्त करता है?

39 / 375

39. Which shortcut key is copy paste a file folder? |
किसी फाइल फोल्डर को कॉपी पेस्ट करने के लिए कौन सी शॉर्टकट कुंजी है?

40 / 375

40. Which option is best for generating random integer 0 or 1? |
यादृच्छिक पूर्णांक 0 या 1 उत्पन्न करने के लिए कौन सा विकल्प सबसे अच्छा है?

41 / 375

41. What does the following code snippet do? | निम्नलिखित कोड स्निपेट क्या करता है?
ALTER TABLE STUDENT ADD(ADDRESS VARCHAR2(20)); | ALTER टेबल स्टूडेंट ADD(ADDRESS VARCHAR2(20));

42 / 375

42. Which brackets is used to write array in java script? |
जावा स्क्रिप्ट में ऐरे के लिए किस ब्रैकेट का उपयोग किया जाता है?

43 / 375

43. Who is the father of cloud computing? |
क्लाउड कंप्यूटिंग के जनक कौन हैं?

44 / 375

44. What does an interface contain in Java? |
जावा में इंटरफ़ेस में क्या शामिल होता है?

45 / 375

45. Which ribbon tab has Conditional Formatting option? |
किस रिबन टैब में कंडीशनल फ़ॉर्मेटिंग विकल्प होता है?

46 / 375

46. Which programming language’s syntax influences javascript syntax? |
किस प्रोग्रामिंग लैंग्वेज का सिंटैक्स जावास्क्रिप्ट सिंटेक्स को प्रभावित करता है?

47 / 375

47. What Is full form of WAN? |
WAN का फुल फॉर्म क्या है?

48 / 375

48. What is the full form of E-Mail? |
E-Mail का फुल फॉर्म क्या है?

49 / 375

49. Which list is used to create multiple copies of a document in a mail merge? |
मेल मर्ज में किसी डॉक्यूमेंट की एकाधिक प्रतियां बनाने के लिए किस सूची का उपयोग किया जाता है?

50 / 375

50. Which is an attribute of < Table > tag? |
< Table> टैग की विशेषता कौन सी है?

51 / 375

51. Which type of chart is suitable for single series of data? |
किस प्रकार का चार्ट डेटा की एकल श्रृंखला के लिए उपयुक्त है?

52 / 375

52. Which web server has high performance stability simple configuration and low resource usage? | किस वेब सर्वर में हाई परफॉर्मेंस स्टेबिलिटी सिंपल कॉन्फ़िगरेशन और लो रिसोर्स यूज है?

53 / 375

53. What type of device is a printer? |
प्रिंटर किस प्रकार की डिवाइस है?

54 / 375

54. Which dialog box changes slides automatically for a particular period of time in PowerPoint? |कौन सा डायलॉग बॉक्स पावरपॉइंट में एक विशेष समयावधि के लिए स्लाइड्स को स्वचालित रूप से बदलता है?

55 / 375

55. What is the order of files and directories in Windows Explorer? |
विंडोज़ एक्सप्लोरर में फ़ाइलों और डायरेक्ट्रीज का क्रम क्या है?

56 / 375

56. Which is JavaScript's default behaviour of moving declarations to the top of their containing scope? | डेक्लरेशंस को उनके युक्त दायरे के टॉप पर ले जाने का JavaScript's का डिफ़ॉल्ट व्यवहार कौन सा है?

57 / 375

57. Which type of network connection is used to cover 10km to 1000km area? |
10 Km से 1000 Km क्षेत्र को कवर करने के लिए किस प्रकार के नेटवर्क कनेक्शन का उपयोग किया जाता है?

58 / 375

58. Which is the correct way of inheriting class A by class B? |
class A को class B द्वारा इन्हेरीटिंग में प्राप्त करने का सही तरीका कौन सा है?

59 / 375

59. How can you insert a audio file in your word document? |
आप अपने वर्ड डॉक्यूमेंट में ऑडियो फ़ाइल कैसे सम्मिलित कर सकते हैं?

60 / 375

60. In which of the following modulus operator(%) can be applied? |
निम्नलिखित में से किस मॉड्यूलस ऑपरेटर (%) को लागू किया जा सकता है?

61 / 375

61. What is the full form of SDLC? |
SDLC का पूर्ण रूप क्या है?

62 / 375

62. Which memory is allocated by Java array? |
जावा ऐरे द्वारा कौन सी मेमोरी आवंटित की जाती है?

63 / 375

63. What the Twisted pair wires, Co-axial cable and Optical fiber cable are? |
ट्विस्टेड पेयर वायर, को-एक्सियल केबल और ऑप्टिकल फाइबर केबल क्या हैं?

64 / 375

64. In which application data validation is used? |
किस एप्लिकेशन में डेटा सत्यापन का उपयोग किया जाता है?

65 / 375

65. Which MS word tab has acess to mail merge options? |
MS word के किस टैब में मेल मर्ज विकल्पों तक पहुंच है?

66 / 375

66. Which is an abstract? |
कौन सा एक abstract है?

67 / 375

67. Which is an internal power supply unit of CPU? |
CPU की आंतरिक विद्युत आपूर्ति इकाई कौन सी है?

68 / 375

68. Which character represents a range of values in Linux? |
Linux में कौन सा वर्ण मानों की श्रेणी का प्रतिनिधित्व करता है?

69 / 375

69. What is the full form of BI in PowerBI? |
PowerBI में BI का पूर्ण रूप क्या है?

70 / 375

70. How are data items added to an array? |
किसी ऐरे में डेटा आइटम कैसे जोड़े जाते हैं?

71 / 375

71. Which is an example for WAN? |
WAN के लिए कौन सा उदाहरण है?

72 / 375

72. Which is a statement terminator in javascript? |
जावास्क्रिप्ट में एक स्टेटमेंट टर्मिनेटर कौन सा है?

73 / 375

73. What is the other name of Server-side Javascript? |
सर्वर-साइड जावास्क्रिप्ट का दूसरा नाम क्या है?

74 / 375

74. Which shortcut key is use to print slides in MS PowerPoint? |
MS PowerPoint में स्लाइड प्रिंट करने के लिए किस शॉर्टकट कुंजी का उपयोग किया जाता है?

75 / 375

75. Who developed the Python language? |
पायथन भाषा का विकास किसने किया?

76 / 375

76. Which option is used to indicate how well the students have done their exams using colour cells shown in the figure? | चित्र में दिखाए गए कलर सेल का उपयोग करके यह दर्शाने के लिए किस विकल्प का उपयोग किया जाता है कि छात्रों ने अपनी परीक्षा कितनी अच्छी तरह से दी है?

77 / 375

77. How to declare an array in python? |
पाइथॉन में ऐरे कैसे घोषित करें?

78 / 375

78. What will be the output of the give phyton code?
list1 = [ 3,2,5,7,3,6 ] list1.pop( 3 )
print( list1 )
दिए गए Python कोड का आउटपुट क्या होगा?
list1 = [ 3,2,5,7,3,6 ] list1.pop( 3 )
print( list1 )

79 / 375

79. What is full form of DML? |
DML का पूर्ण रूप क्या है?

80 / 375

80. Which of the following term is correct for the given code?
____.d = {
< key >: < value >,
< key >: < value >,
.
.
.
< key >: < value >
}
परिभाषित करने के लिए निम्नलिखित का उपयोग किया जाता है
____.d = {
< key > : < value > ,
< key > : < value > ,
.
.
.
< key > : < value >
}

81 / 375

81. Which statement is used to test a block of code for errors? |
त्रुटियों के लिए कोड के एक ब्लॉक का परीक्षण करने के लिए किस कथन का उपयोग किया जाता है?

82 / 375

82. What is the full form of ALU? |
ALU का फुल फॉर्म क्या है?

83 / 375

83. What is the purpose of Nero Start Smart? |
नीरो स्टार्ट स्मार्ट का उद्देश्य क्या है?

84 / 375

84. What is the other name for PDoS? |
PDoS का दूसरा नाम क्या है?

85 / 375

85. What was the earlier name of Java Programming language? |
जावा प्रोग्रामिंग लैंग्वेज का पुराना नाम क्या था?

86 / 375

86. Which key copies the selected items in open source office? |
ओपन सोर्स ऑफिस में कौन सी कुंजी चयनित आइटम की प्रतिलिपि बनाती है?

87 / 375

87. Which database aspect preserves execution of translation in isolation? |
कौन सा डेटाबेस पहलू अनुवाद के निष्पादन को पृथक रूप से संरक्षित करता है?

88 / 375

88. How can we correspond to the category labels in a pie chart and series name in other chart? | हम पाई चार्ट में श्रेणी लेबल और अन्य चार्ट में सीरीज नाम के बीच कैसे सामंजस्य स्थापित कर सकते हैं?

89 / 375

89. Which function sends messages to the users requesting for an text input? |
कौन सा फ़ंक्शन उपयोगकर्ताओं को टेक्स्ट इनपुट के लिए अनुरोध करते हुए संदेश भेजता है?

90 / 375

90. What is the first action to be taken incase of an electric shock? |
बिजली का झटका लगने पर सबसे पहले क्या कार्रवाई की जानी चाहिए?

91 / 375

91. Which excel analysis tool is best for solving problem with one variable ? |
एक वेरिएबल वाली समस्या को हल करने के लिए कौन सा एक्सेल विश्लेषण उपकरण सबसे अच्छा है?

92 / 375

92. Which of the following can be operands of arithmetic operators for integers? |
निम्नलिखित में से कौन सा पूर्णांकों के लिए अंकगणितीय ऑपरेटरों का ऑपरेंड हो सकता है?

93 / 375

93. What is the first option of the KDE desktop in Linux? |
Linux में KDE डेस्कटॉप का पहला विकल्प क्या है?

94 / 375

94. Which tab is used to access the What-if Analysis Excel tools? |
व्हाट-इफ एनालिसिस एक्सेल टूल्स तक पहुंचने के लिए किस टैब का उपयोग किया जाता है?

95 / 375

95. Which is a cybercrime? |
कौन सा साइबर क्राइम है?

96 / 375

96. Which is used to interpret and execute Java Applet Classes hosted by HTML? |
HTML द्वारा होस्ट की गई Java Applet Classes की व्याख्या और निष्पादन के लिए किसका उपयोग किया जाता है?

97 / 375

97. Which is a type of Pop-up box in JavaScript? |
जावास्क्रिप्ट में कौन सा पॉपअप बॉक्स का टाइप नहीं है?

98 / 375

98. What is the other name for web address? |
web address का दूसरा नाम क्या है?

99 / 375

99. Which function in javassript converts a number to a string? |
जावास्क्रिप्ट में कौन सा फ़ंक्शन एक संख्या को एक स्ट्रिंग में परिवर्तित करता है?

100 / 375

100. In which icon deleted files and folders are found? |
डिलीट की गई फ़ाइलें और फ़ोल्डर्स किस आइकन में पाए जाते हैं?

101 / 375

101. What do statistical analysis packages have much in common with? |
स्टैटिस्टिकल एनालिसिस पैकेजों में क्या समानता है?

102 / 375

102. Which type of attack is a method of defeating a cryptographic scheme of trying a large number of possibilities? | किस प्रकार का हमला बड़ी संख्या में संभावनाओं की कोशिश करने की एक क्रिप्टोग्राफिक योजना को हराने का एक तरीका है?

103 / 375

103. Which tool is used for accessing HTML based Java documentary? |
HTML आधारित जावा डॉक्यूमेंट्री तक पहुंचने के लिए किस टूल का उपयोग किया जाता है?

104 / 375

104. Which is a type of charts? |
चार्ट का एक प्रकार कौन सा है?

105 / 375

105. Which creates a bar diagram? |
बार डायाग्राम कौन बनाता है?

106 / 375

106. Which special variable holds more than one value at a time? |
कौन सा स्पेशल वेरिएबल एक समय में एक से अधिक वैल्यू रखता है?

107 / 375

107. What is BIOS? |
BIOS क्या है?

108 / 375

108. Which creates a Calendar table in PowerBI? |
PowerBI में कैलेंडर टेबल कौन बनाता है?

109 / 375

109. What will be the return type of a method that not returns any value? |
उस विधि का रिटर्न प्रकार क्या होगा जो कोई मान नहीं लौटाता है?

110 / 375

110. Which method is used to obtain information about an object? |
किसी वस्तु के बारे में जानकारी प्राप्त करने के लिए किस विधि का प्रयोग किया जाता है?

111 / 375

111. Which of the following is a web hosting company? |
निम्नलिखित में से कौन एक वेब होस्टिंग कंपनी है?

112 / 375

112. Who is the father of computer security? |
कंप्यूटर सिक्योरिटी के जनक कौन है ?

113 / 375

113. Which authenticates and handles credit card payment for E-Commerce? |
ई-कॉमर्स के लिए क्रेडिट कार्ड भुगतान को कौन प्रमाणित और प्रबंधित करता है?

114 / 375

114. What is the first tag in html document? |
html डॉक्यूमेंट में पहला टैग क्या है?

115 / 375

115. Which is a keyword in Java? |
जावा में कीवर्ड कौन सा है?

116 / 375

116. Which option in E - Commerce helps to keep the selected products until checkout or payment? | ई-कॉमर्स में कौन सा विकल्प चेकआउट या भुगतान तक चयनित उत्पादों को रखने में मदद करता है?

117 / 375

117. What is the correct html code for inserting a background image? |
बैकग्राउंड इमेज इन्सर्ट करने के लिए सही html कोड क्या है?

118 / 375

118. What is the purpose of modulus (%) operator in javascript? |
जावास्क्रिप्ट में मॉड्यूलस (%) ऑपरेटर का उद्देश्य क्या है?

119 / 375

119. What is an array in Java? |
जावा में ऐरे क्या है?

120 / 375

120. Which port is use to connect monitor to CPU? |
मॉनिटर को CPU से कनेक्ट करने के लिए किस पोर्ट का उपयोग किया जाता है?

121 / 375

121. Which file name matches the command DIR????T.TxT in DOS? |
कौन सा फ़ाइल नाम DOS में कमांड DIR????T.TxT से मेल खाता है?

122 / 375

122. Which variable works as function argument in java script? |
जावा स्क्रिप्ट में फ़ंक्शन आर्गुमेंट के रूप में कौन सा वेरिएबल काम करता है?

123 / 375

123. Which tag is use for AUDIO in HTML? |
HTML में AUDIO के लिए कौन सा टैग प्रयोग किया जाता है?

124 / 375

124. Which statement can be used to access the classes of a different package from the current package? | वर्तमान पैकेज से भिन्न पैकेज की क्लासों तक पहुंचने के लिए किस कथन का उपयोग किया जा सकता है?

125 / 375

125. Which shows the address of the current selection or active cell in MS Excel? |
MS Excel में वर्तमान चयन या ऐक्टिव सेल का एड्रेस कौन दिखाता है?

126 / 375

126. Which is the logical design of the database? |
डेटाबेस का तार्किक डिज़ाइन कौन सा है?

127 / 375

127. Which keyword prevents inheritance of a class? |
कौन सा कीवर्ड किसी क्लास की इनहेरिटेंस को रोकता है?

128 / 375

128. What are the three data types supported by JavaScript? |
जावास्क्रिप्ट द्वारा समर्थित थ्री डेटा टाइप क्या हैं?

129 / 375

129. Which Excel tab is used for importing, outlining and subtotalling the data placed in a worksheet data list? | वर्कशीट डेटा सूची में रखे गए डेटा को इम्पोर्ट करने, रेखांकित करने और उप-योग करने के लिए किस एक्सेल टैब का उपयोग किया जाता है?

130 / 375

130. Which type of servers does Web hosting based on? |
वेब होस्टिंग किस प्रकार के सर्वर पर आधारित है?

131 / 375

131. Which function returns a value within a table? |
कौन सा फ़ंक्शन किसी टेबल में कोई वैल्यू लौटाता है?

132 / 375

132. Which tab adds pivot table, charts and hyperlinks in a spread sheet? |
पिवट टेबल, चार्ट, हाइपरलिंक्स को स्प्रेड शीट में शामिल करने के लिए किस टैब का उपयोग किया जाता है?

133 / 375

133. Which loop declaration is valid? |
कौन सा लूप डिक्लेरेशन मान्य है?

134 / 375

134. What is the parameter of the method Date.parse( )? |
मेथड Date.parse( ) का पैरामीटर क्या है?

135 / 375

135. Which menu applies various effects to the text in a slide? |
कौन सा मेनू स्लाइड में टेक्स्ट पर विभिन्न प्रभाव लागू करता है?

136 / 375

136. Which bar contains the current position of the cursor in MS Word? |
MS Word में कौन सी बार कर्सर की वर्तमान स्थिति को दर्शाती है?

137 / 375

137. What is full form of DDL? |
DDL का पूर्ण रूप क्या है?

138 / 375

138. What arranges data in Ascending (A-Z) or Descending (Z-A) order ? |
डेटा को आरोही (A-Z) या अवरोही (Z-A) क्रम में कौन व्यवस्थित करता है?

139 / 375

139. Which box is present in Pivot Table fields list? |
पिवोट टेबल फ़ील्ड सूची में कौन सा बॉक्स मौजूद है?

140 / 375

140. Which tool allows the user to select different layout for slide? |
कौन सा टूल यूजर को स्लाइड के लिए अलग लेआउट चुनने की अनुमति देता है?

141 / 375

141. Who developed javascript? |
जावास्क्रिप्ट किसने विकसित की?

142 / 375

142. How the sum function of pivot table is changed to that value are automatically counted and not summed? | पिवट टेबल के sum फ़ंक्शन को उस मान में कैसे बदला जाता है, स्वचालित रूप से गिना जाता है और सारांशित नहीं किया जाता है?

143 / 375

143. Which of the following is false statement about package in java? |
जावा में पैकेज के बारे में निम्नलिखित में से कौन सा गलत कथन है?

144 / 375

144. What is the purpose of Shift+Ctrl+N in Open Office? |
ओपन ऑफिस में Shift+Ctrl+N का उद्देश्य क्या है?

145 / 375

145. Who is the father of Java programming language? |
जावा प्रोग्रामिंग भाषा के जनक कौन हैं?

146 / 375

146. On which application the principal arrival of PowerBI based on? |
PowerBI का मुख्य आगमन किस अनुप्रयोग पर आधारित है?

147 / 375

147. Which ribbon menu displays the Page Setup grouping of commands? |
कौन सा रिबन मेनू कमांड के पेज सेटअप ग्रुपिंग को प्रदर्शित करता है?

148 / 375

148. Which crime involves the usage of computer networks to create or access materials that sexually exploit underage persons? | किस अपराध में कम्प्यूटर नेटवर्क का उपयोग कर ऐसी सामग्री तैयार करना या उन तक पहुंच बनाना शामिल है जो कम उम्र के व्यक्तियों का यौन शोषण करती है?

149 / 375

149. Which option creates a presentation automatically in PowerPoint? |
पावर प्वाइंट में स्वचालित रूप से प्रस्तुति बनाने के लिए किस विकल्प का उपयोग किया जाता है?

150 / 375

150. Which is a valued DOMAIN name form? |
निम्नलिखित में से कौन सा महत्वपूर्ण DOMAIN नाम है?

151 / 375

151. What is the sequence of characters? |
कैरेक्टर का क्रम क्या है?

152 / 375

152. Which ribbon tab has Conditional Formatting option? |
किस रिबन टैब में कंडीशनल फ़ॉर्मेटिंग विकल्प होता है?

153 / 375

153. Which package includes classes to create user interface like Button and Checkbox? |
किस पैकेज में बटन और चेकबॉक्स जैसे यूजर इंटरफ़ेस बनाने के लिए क्लासेस शामिल हैं?

154 / 375

154. Which command stores the active document permanently? |
कौन सा कमांड एक्टिव डॉक्यूमेंट को स्थायी रूप से स्टोर करता है?

155 / 375

155. What is the full form of ADLC? |
ADLC का पूर्ण रूप क्या है?

156 / 375

156. What is the full form of CSS? |
CSS का फुल फॉर्म क्या है?

157 / 375

157. What is Cloud Computing? |
क्लाऊड कम्प्यूटिंग क्या है?

158 / 375

158. What type of computing technology refers to services and applications that typically run on a distributed network through virtualized resources? |
किस प्रकार की कंप्यूटिंग टेक्नोलॉजी उन सर्विस और एप्लीकेशन को संदर्भित करती है जो आमतौर पर वर्चुअलाइज्ड रिसोर्स के माध्यम से वितरित नेटवर्क पर चलती हैं?

159 / 375

159. Which control panel is used to change the system date? |
कंट्रोल पैनल में उस टूल का नाम बताएं जिससे हम सिस्टम की तारीख बदल सकते हैं?

160 / 375

160. Which of the following is used to declare, construct, and initialize an array? |
निम्नलिखित में से किसका उपयोग किसी ऐरे को घोषित करने,निर्माण करने और आरंभ करने के लिए किया जाता है?

161 / 375

161. Which option is used for tab setting? |
टैब सेटिंग के लिए किस विकल्प का उपयोग किया जाता है?

162 / 375

162. Which of the following HTML code is valid? |
निम्न में से कौन सा HTML कोड मान्य है?

163 / 375

163. What is the full form of OSS? |
OSS का फुल फॉर्म क्या है?

164 / 375

164. What is the purpose of expansion slot in mother board? |
मदरबोर्ड में एक्सपेंशन स्लॉट का उद्देश्य क्या है?

165 / 375

165. What is the full form of EDI? |
EDI का फुल फॉर्म क्या है

166 / 375

166. Which type of website should be used for combination of MySQL and HTML? |
MySQL और HTML के संयोजन के लिए किस प्रकार की वेबसाइट का उपयोग किया जाना चाहिए?

167 / 375

167. Which option inserts a Pivot Table? |
कौन सा विकल्प पिवोट टेबल सम्मिलित करता है?

168 / 375

168. How many pairs of wires are there in category 5 UTP cable? |
श्रेणी 5 UTP केबल में तारों के कितने जोड़े होते हैं?

169 / 375

169. Which type of integration testing uses stubs? |
किस प्रकार का इन्टीग्रेशन टेस्ट स्टब्स का उपयोग करता है?

170 / 375

170. What is required for real time audio-video conferencing using two way communication? |
दोतरफा संचार का उपयोग करते हुए वास्तविक समय ऑडियो-वीडियो कॉन्फ्रेंसिंग के लिए क्या आवश्यक है?

171 / 375

171. Which type does Portrait and Landscape belongs to? |
पोर्ट्रेट और लैंडस्केप किस प्रकार से संबंधित है?

172 / 375

172. Which assignment operator is equivalent to a = a * 5? |
कौन सा असाइनमेंट ऑपरेटर a = a * 5 के बराबर है?

173 / 375

173. What is the return type of the method parseInt( )? |
विधि ParseInt ( ) का रिटर्न टाइप क्या है?

174 / 375

174. What is the data limit for free Power BI adoption? |
निःशुल्क Power BI अपनाने के लिए डेटा लिमिट क्या है?

175 / 375

175. What contents will appeared in those cells, if you drag the fill handle of cell B2 downward into cell B3, B4 and B5? | यदि आप सेल B2 के फील हैंडल को सेल B3, B4 और B5 में नीचे की ओर खींचते हैं, तो उन सेल में क्या सामग्री दिखाई देगी?

176 / 375

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

177 / 375

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

178 / 375

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

179 / 375

179. 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( )

180 / 375

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

181 / 375

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

182 / 375

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

183 / 375

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

184 / 375

184. 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}

185 / 375

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

186 / 375

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

187 / 375

187. What is the full form of COD in E -Commerce? |
E - Commerce में COD का फुल फॉर्म क्या है

188 / 375

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

189 / 375

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

190 / 375

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

191 / 375

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

192 / 375

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

193 / 375

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

194 / 375

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

195 / 375

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

196 / 375

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

197 / 375

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

198 / 375

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

199 / 375

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

200 / 375

200. 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

201 / 375

201. Which keyword adds an alternative condition to an if statement? |
कौन सा कीवर्ड if स्टेटमेंट में वैकल्पिक नियम जोड़ता है?

202 / 375

202. Which unit is considered if the domain of the element is atomic? |
यदि तत्व का डोमेन परमाणु है तो कौन सी इकाई पर विचार किया जाता है?

203 / 375

203. What will be the output of a given code?
nums=list({1:'one',2:'two'})
print(nums)______
किसी दिए गए कोड का आउटपुट क्या होगा?
nums=list({1:'one',2:'two'})
print(nums)______

204 / 375

204. What is the process of deleting all the data on the hard drive? |
हार्ड ड्राइव पर सभी डेटा को डिलीट करने की प्रक्रिया क्या है?

205 / 375

205. Which web server provides good customer support if it had any issues? |
यदि कोई समस्या है तो कौन सा वेब सर्वर अच्छी ग्राहक सहायता प्रदान करता है?

206 / 375

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

207 / 375

207. Which is the default network mask for class A? |
क्लॉस A के लिए डिफॉल्ट नेटवर्क मास्क कौन सा है?

208 / 375

208. Which keyword is used to declare a variable in javascript? |
जावास्क्रिप्ट में एक वेरिएबल घोषित करने के लिए किस कुंजी का उपयोग किया जाता है?

209 / 375

209. Which function counts the number of cells that contains numbers in a range? |
कौन सा फ़ंक्शन किसी श्रेणी में संख्याओं वाली सेल्स की संख्या की गणना करता है?

210 / 375

210. Which function specifies access rights to resources related to information security? |
कौन सा फ़ंक्शन सूचना सुरक्षा से संबंधित संसाधनों तक पहुंच अधिकार निर्दिष्ट करता है?

211 / 375

211. Which command remove files in Linux? |
लिनक्स में कौन सा कमांड फाइलों को हटाता है?

212 / 375

212. Which is required for video conferencing and streaming, live chat and web based courses? |
वीडियो कॉन्फ्रेंसिंग और स्ट्रीमिंग, लाइव चैट और वेब आधारित पाठ्यक्रमों के लिए क्या आवश्यक है?

213 / 375

213. Which of the following is true for variable names in Python? |
पायथन में वेरिएबल नामों के लिए निम्न में से कौन सा सही है?

214 / 375

214. Which shortcut key center aligns the selected text in MS Word? |
MS Word में चयनित टेक्स्ट को कौन सा शॉर्टकट कुंजी केंद्र में संरेखित करता है?

215 / 375

215. Which Python command is used to add a new element to a list? |
किसी लिस्ट में नया एलिमेंट जोड़ने के लिए किस Python command का उपयोग किया जाता है?

216 / 375

216. Which is used as loop in Python? |
पायथन में लूप के रूप में किसका प्रयोग किया जाता है?

217 / 375

217. How many parts are there in a ‘For’ loop in Java Script? |
जावास्क्रिप्ट में ‘For’ loop में कितने भाग होते हैं?

218 / 375

218. Which tag is used to create a combo box? |
कॉम्बो बॉक्स बनाने के लिए आप किस टैग का प्रयोग करेंगे?

219 / 375

219. What is the purpose of cover page? |
कवर पेज का उद्देश्य क्या है?

220 / 375

220. Which option displays the rows that meet certain conditions in MS Excel? |
कौन सा विकल्प MS Excel में कुछ शर्तों को पूरा करने वाली पंक्तियों को प्रदर्शित करता है?

221 / 375

221. Which of the following softwares could be used to build a website? |
वेबसाइट बनाने के लिए निम्न में से कौन सा सॉफ्टवेयर इस्तेमाल किया जा सकता है?

222 / 375

222. Which function referencing a cell to match values in another row or column against the cell? |कौन सा फ़ंक्शन किसी सेल को संदर्भित करके उस सेल के विरुद्ध किसी अन्य पंक्ति या स्तंभ के मानों का मिलान करता है?

223 / 375

223. What is the full form of CSV ? |
CSV का फुल फॉर्म क्या है?

224 / 375

224. Which item contains text graphics, charts, sound, video, etc., in PowerPoint? |
पावर पॉइंट में टेक्स्ट आइटम, चार्ट, साउंड, वीडियो इत्यादि कौन से आइटम हैं?

225 / 375

225. Which is a default page setup orientation of the PowerPoint slides? |
कौन सा टैब स्लाइड में ब्लॉक एरो सम्मिलित करता है?

226 / 375

226. Which is a valid Python file extension? |
वैध पायथन फाइल एक्सटेंशन कौन सा है?

227 / 375

227. Which is a box in the PivotTable Fields List? |
PivotTable फ़ील्ड सूची में कौन सा बॉक्स है?

228 / 375

228. Which tag creates a checkbox in a form in html? |
कौन सा टैग HTML में फॉर्म में चेकबॉक्स बनाता है?

229 / 375

229. How do you add a link that allows the visitor to send an email from the page? |
आप एक लिंक कैसे जोड़ते हैं जो आगंतुक को पेज से एक ईमेल भेजने की अनुमति देगा?

230 / 375

230. What will be the output of the following Python code?
i = 0
while i < 5:
print(i)
i += 1
if i == 3:
break
else:
print(0)
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
i = 0
while i < 5:
print(i)
i += 1
if i == 3:
break
else:
print(0)

231 / 375

231. What is the format for compound statement? |
कंपाउंड स्टेटमेंट का प्रारूप क्या है?

232 / 375

232. What is the use of below statement?
Declare out of classroom seats condition
DECLARE exit handler FOR OUT OF classroom seats
BEGIN
SEQUENCE OF statements
END
नीचे दिए गए कथन का क्या उपयोग है?
Declare out of classroom seats condition
DECLARE exit handler FOR OUT OF classroom seats
BEGIN
SEQUENCE OF statements
END

233 / 375

233. Which open source software is used to upload file from client to server? |
क्लाइंट से सर्वर तक फ़ाइल अपलोड करने के लिए किस ओपन सोर्स सॉफ़्टवेयर का उपयोग किया जाता है?

234 / 375

234. Which is the the open source web server solution stack package? |
ओपन सोर्स वेब सर्वर सॉल्यूशन स्टैक पैकेज कौन सा है?

235 / 375

235. Why control structure is used in Python program? |
पायथन प्रोग्राम में कंट्रोल स्ट्रक्चर का उपयोग क्यों किया जाता है?

236 / 375

236. What is the name of the tool in control panel is used to adjust your computer setting with voice command? | कंट्रोल पैनल में उस टूल का नाम बताएं जिसका उपयोग आपके कंप्यूटर की सेटिंग को वॉइस कमांड से समायोजित करने के लिए किया जाता है।

237 / 375

237. Which is a wildcard character? |
निम्नलिखित में से कौन वाइल्डकार्ड कैरेक्टर है?

238 / 375

238. Which property returns the width of the visitor’s screen in pixels? |
कौन सी प्रॉपर्टी विज़िटर की स्क्रीन की चौड़ाई पिक्सेल में लौटाती है?

239 / 375

239. Which function accepts input from the user? |
कौन सा फंक्शन यूजर से इनपुट स्वीकार करता है?

240 / 375

240. Which protects data from online attacks, deletions and malwares? |
कौन सा ऑनलाइन हमलों, विलोपन और मैलवेयर से डेटा की सुरक्षा करता है?

241 / 375

241. Which provides a runtime environment? |
रनटाइम एनवायरनमेंट कौन प्रदान करता है?

242 / 375

242. What is a main type of resources used in cloud computing? |
क्लाउड कंप्यूटिंग में प्रयुक्त संसाधनों का मुख्य प्रकार क्या है?

243 / 375

243. Which was Is (a command-line interface) for JavaScript and DOM? |
जावास्क्रिप्ट और DOM के लिए Is (एक कमांड लाइन इंटरफ़ेस) कौन सा था?

244 / 375

244. What does the following statement in SQL do? DROP TABLE student; |
SQL में निम्नलिखित कथन क्या करता है? DROP TABLE student;

245 / 375

245. What is the penalty for destroying computer source code? |
कंप्यूटर सोर्स कोड को नष्ट करने का दंड क्या है?

246 / 375

246. What is the purpose of gutter margin? |
गटर मार्जिन का उद्देश्य क्या है?

247 / 375

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

248 / 375

248. Which is a type of cloud computing service? |
क्लाउड कंप्यूटिंग सेवा का एक प्रकार कौन सा है?

249 / 375

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

250 / 375

250. What type of copy is produced by printer? |
प्रिंटर द्वारा किस प्रकार की कॉपी तैयार की जाती है?

251 / 375

251. Which language is widely used in frontend development? |
फ्रंटएंड विकास में किस भाषा का व्यापक रूप से उपयोग किया जाता है?

252 / 375

252. Which is an attempt to steal, spy, damage computer systems or their associated information? | जो कंप्यूटर सिस्टम या उनसे संबंधित जानकारी को चुराने, जासूसी करने, नुकसान पहुंचाने का प्रयास है?

253 / 375

253. Which web language controls the HTML elements and allows them to change at any time without returning to the Web server? | कौन सी web language HTML एलिमेंट्स को नियंत्रित करती है और उन्हें Web server पर वापस आए बिना किसी भी समय बदलने की अनुमति देती है?

254 / 375

254. Which is the correct syntax for adding alternate text for image, if the image cannot be displayed? | यदि इमेज प्रदर्शित नहीं की जा सकती है, तो इमेज के लिए वैकल्पिक टेक्स्ट जोड़ने के लिए कौन सा वाक्यविन्यास सही है?

255 / 375

255. Which software coding is freely available on the internet and open for users for further use? | कौन सा सॉफ्टवेयर कोडिंग इंटरनेट पर स्वतंत्र रूप से उपलब्ध है और यूजर के लिए आगे उपयोग के लिए खुला है?

256 / 375

256. Which publishes a webpage to a web hosting server? |
वेब होस्टिंग सर्वर पर वेबपेज कौन प्रकाशित करता है?

257 / 375

257. Which is the model in E-commerce, if the seller and buyer are both from business firms? |
ई-कॉमर्स में कौन सा मॉडल होगा, यदि विक्रेता और क्रेता दोनों ही व्यापारिक फर्मों से हों?

258 / 375

258. Which Web page contains the controls while interacting with user? |
उपयोगकर्ता के साथ बातचीत करते समय कौन सा वेब पेज कंट्रोल रखता है?

259 / 375

259. Which symbol is used in a formula to make a cell reference absolute? |
सेल रिफ़रेन्स को एब्सॉल्यूट बनाने के लिए सूत्र में किस प्रतीक का उपयोग किया जाता है?

260 / 375

260. What is the file extension of Microsoft PowerPoint? |
माइक्रोसॉफ्ट पावरप्वाइंट का फ़ाइल एक्सटेंशन क्या है?

261 / 375

261. What does the term "attribute" refers to in a table? |
किसी टेबल में "attribute" शब्द का क्या अर्थ है?

262 / 375

262. Which Control Panel applet gives information about the computer? |
कौन सा कंट्रोल पैनल एप्लेट कंप्यूटर की जानकारी देता है?

263 / 375

263. Which PowerPoint tab has themes? |
किस PowerPoint टैब में थीम हैं?

264 / 375

264. Which object method is used to return the value rounded down to its nearest integer? |
किस ऑब्जेक्ट विधि का उपयोग इसके निकटतम अंतराल के लिए राउंडेड वैल्यू को वापस करने के लिए किया जाता है?

265 / 375

265. What is the full form of ADSL? |
ADSL का फुल फॉर्म क्या है?

266 / 375

266. Which method of object class is used to obtain class of an object at run time? |
ऑब्जेक्ट क्लास की इनमें से कौन सी विधि रन टाइम पर किसी ऑब्जेक्ट की क्लास प्राप्त करने के लिए उपयोग की जाती है?

267 / 375

267. What is the full form of RAD in software process? |
सॉफ्टवेयर प्रोसेस में RAD का पूर्ण रूप क्या है?

268 / 375

268. How Cells are named in MS Excel? |
MS Excel में सेल का नाम कैसे दिया जाता है?

269 / 375

269. Which of the following is the correct expression that is true if the number x is between 1 and 100 or the number is negative? | निम्नलिखित में से कौन सा सही व्यंजक है जो सत्य है यदि संख्या x 1 से 100 के बीच है या संख्या ऋणात्मक है?

270 / 375

270. Which is used to access individual value in an array? |
किसी ऐरे में अलग-अलग वैल्यू तक पहुंचने के लिए किसका उपयोग किया जाता है?

271 / 375

271. Which key combined with ctrl key creates a macro key in Excel? |
कौन सी कुंजी Ctrl कुंजी के साथ मिलकर Excel में मैक्रो कुंजी बनाती है?

272 / 375

272. Which option prints four slides in a single page? |
कौन सा विकल्प एक ही पेज में चार स्लाइड प्रिंट करता है?

273 / 375

273. Which is a E-Commerce site? |
E - Commerce साइट कौन सी है?

274 / 375

274. Which loop causes the break statement to exit from the loop ? |
कौन सा लूप ब्रेक स्टेटमेंट को लूप से बाहर निकलने का कारण बनता है?

275 / 375

275. Which is a default document type for a mail merge? |
मेल मर्ज के लिए डिफ़ॉल्ट डॉक्यूमेंट प्रकार कौन सा है?

276 / 375

276. Which polymorphism behaviour do you see in below class?

class Paint {
public void Color(int x) {
}
public void Color(int x, int y) {
}
public void Color(int x, int y, int z) {
}
}
नीचे दी गई क्लास में आप कौन सा पॉलीमॉरफिस्म व्यवहार देखते हैं?
class Paint {
public void Color(int x) {
}
public void Color(int x, int y) {
}
public void Color(int x, int y, int z) {
}
}

277 / 375

277. Which class inherits the properties of the other? |
कौन सी क्लास दूसरे के गुण इनहेरिटेंस में प्राप्त करता है?

278 / 375

278. Which DOS command deletes a directory? |
कौन सा DOS कमांड किसी डायरेक्टरी को डिलीट करता है?

279 / 375

279. What is the main purpose of JavaScript? |
जावास्क्रिप्ट का मुख्य उद्देश्य क्या है?

280 / 375

280. What is the full form of CGI? |
CGI का फुल फॉर्म क्या है

281 / 375

281. Which character represents parent directory in Linux? |
Linux में कौन सा कैरेक्टर पैरेंट डायरेक्टरी का प्रतिनिधित्व करता है?

282 / 375

282. What is the return type of the method parseFloat( )? |
मेथड ParseFloat ( ) का रिटर्न टाइप क्या है?

283 / 375

283. How macro can be restricted from running automatically while starting MS Excel? |
MS Excel प्रारंभ करते समय मैक्रो को स्वचालित रूप से चलने से कैसे प्रतिबंधित किया जा सकता है?

284 / 375

284. Which of the following is TRUE about DDL command? |
DDL कमांड के बारे में निम्नलिखित में से कौन सा सत्य है?

285 / 375

285. Which software interfaces the major hardware components of the computer with the OS? |
कौन सा सॉफ्टवेयर कंप्यूटर के प्रमुख हार्डवेयर घटकों को ऑपरेटिंग सिस्टम के साथ इंटरफेस करता है?

286 / 375

286. How data can be accessed using array? |
ऐरे का उपयोग करके डेटा कैसे एक्सेस किया जा सकता है?

287 / 375

287. What is the main advantage of intranet over than Internet? |
इंटरनेट की तुलना में इंट्रानेट का मुख्य लाभ क्या है?

288 / 375

288. Which function key opens save as dialogue box in MS Excel? |
MS Excel में कौन सी फ़ंक्शन कुंजी सेव ऐज़ डायलॉग बॉक्स खोलती है?

289 / 375

289. Which one enables the hosting providers to manage multiple domains on a single server? |
कौन सा एक होस्टिंग प्रदाताओं को एक सर्वर पर कई डोमेन बनाने में सक्षम बनाता है?

290 / 375

290. Which option is considered as cloud? |
कौन सा विकल्प क्लाउड माना जाता है?

291 / 375

291. Which method of Object class can clone an object? |
ऑब्जेक्ट क्लास की कौन सी विधि किसी ऑब्जेक्ट का क्लोन बना सकती है?

292 / 375

292. Which storage technologies has the best performance? |
कौन सी स्टोरेज टेक्नोलॉजी का प्रदर्शन सबसे अच्छा है?

293 / 375

293. How are individuals in a table referred to as? |
टेबल में इंडिविजुअल को किस प्रकार संदर्भित किया जाता है?

294 / 375

294. Which of the following attacks to protects by firewall? |
निम्नलिखित में से कौन सा आक्रमण फ़ायरवॉल द्वारा सुरक्षा करता है?

295 / 375

295. Which one is responsible of running javascript code? |
जावास्क्रिप्ट कोड चलाने के लिए कौन सा जिम्मेदार है?

296 / 375

296. How many types of groups are available in active directory? |
एक्टिव डायरेक्टरी में कितने प्रकार के ग्रुप उपलब्ध हैं?

297 / 375

297. Which of the following is an logical operator? |
निम्न में से कौन सा लॉजिकल ऑपरेटर है?

298 / 375

298. What are the dotted areas in an empty slide of MS PowerPoint ? |
MS PowerPoint की एक खाली स्लाइड में डॉटेड एरिया क्या हैं?

299 / 375

299. Where do pinned application stay in Windows OS? |
विंडोज़ ऑपरेटिंग सिस्टम में पिन किए गए एप्लिकेशन कहां रहते हैं?

300 / 375

300. Which package contains abstract keyword? |
किस पैकेज में abstract कीवर्ड है?

301 / 375

301. Which JavaScript is also called as Client side Javascript? |
किस JavaScript को क्लाइंट साइड Javascript भी कहा जाता है?

302 / 375

302. Which shortcut key refeshes Windows desktop? |
विंडोज़ डेस्कटॉप को रिफ्रेश करने के लिए उपयोग की जाने वाली शॉर्टकट की का नाम बताइए।

303 / 375

303. Which is the correct CSS syntax? |
सही CSS सिंटैक्स कौन सा है?

304 / 375

304. Which has unauthorized control or access over the computer system and destroys the data? | कौन कंप्यूटर सिस्टम पर अनधिकृत नियंत्रण या पहुंच रखता है और डेटा को नष्ट कर देता है?

305 / 375

305. Which is an arm lift back pressure method? |
आर्म लिफ्ट बैक प्रेशर विधि कौन सी है?

306 / 375

306. Which type of E - Commerce is for tenders and submission of application? |
टेंडर और आवेदन जमा करने के लिए किस प्रकार का E - Commerce है?

307 / 375

307. What are the two main parts available in html document? |
Html डॉक्यूमेंट में उपलब्ध दो मुख्य भाग क्या हैं?

308 / 375

308. Which is the best way to represent the attributes in a large database? |
किसी बड़े डेटाबेस में विशेषताओं को प्रदर्शित करने का सबसे अच्छा तरीका कौन सा है?

309 / 375

309. Which chart shows the proportions of how one or more data elements relate to another data element? | कौन सा चार्ट यह दर्शाता है कि एक या अधिक डेटा तत्व दूसरे डेटा तत्व से किस प्रकार संबंधित हैं?

310 / 375

310. What is the syntax for using continue as a single statement inside any loop in Java? |
जावा में किसी भी लूप के अंदर सिंगल स्टेटमेंट के रूप में जारी रखें का उपयोग करने के लिए सिंटैक्स क्या है?

311 / 375

311. Which document view resembles the appearance of a web browser? |
वेब ब्राउज़र के रूप में कौन सा डॉक्यूमेंट व्यू दिया गया है?

312 / 375

312. Which button is used to add instant animation to the presentation? |
प्रेजेंटेशन में तुरंत एनीमेशन जोड़ने के लिए किस बटन का उपयोग किया जाता है?

313 / 375

313. How many panes are there in backstage view of PowerPoint 2010? |
पावर पॉइंट 2010 में बैकस्टेज व्यू में ये कितने पैन हैं?

314 / 375

314. What type of firewall is typically connected between a device and a network connecting to the Internet? | इंटरनेट से जुड़ने वाले डिवाइस और नेटवर्क के बीच आमतौर पर किस प्रकार का फ़ायरवॉल जुड़ा होता है?

315 / 375

315. Which is the superclass of every class in Java? |
जावा में प्रत्येक क्लास का सुपरक्लास कौन सा है?

316 / 375

316. How to insert chart in MS Excel? |
MS Excel में चार्ट कैसे इन्सर्ट करते हैं?

317 / 375

317. What has the ability to combine name and addresses within standard document? |
मानक दस्तावेज़ में नाम और पते को संयोजित करने की क्षमता किसमें है?

318 / 375

318. Which tab has number format option in Excel? |
Excel में किस टैब में नंबर फॉर्मेट विकल्प होता है?

319 / 375

319. What is the first step for creating a Pivot Table? |
पिवोट टेबल बनाने के लिए पहला स्टेप क्या है?

320 / 375

320. Which of the following is a type of cloud server? |
निम्नलिखित में से कौन सा क्लाउड सर्वर का प्रकार नहीं है?

321 / 375

321. Which command converts cell text to CAPS? |
कौन सा कमांड सेल टेक्स्ट को CAPS में बदलता है?

322 / 375

322. Which scheme controls the interaction between executing transaction ? |
कौन सी योजना लेनदेन निष्पादित करने के बीच परस्पर क्रिया को नियंत्रित करती है?

323 / 375

323. Which part in loop evaluates the conditions? |
लूप में कौन सा पार्ट कंडीशन का मूल्यांकन करता है?

324 / 375

324. Which is a free open source web development IDE? |
निम्‍नलिखित में से कौन सा एक फ्री ओपन सोर्स वेब डेवलपमेंट IDE है?

325 / 375

325. What is the full form of FSF? |
FSF का फुल फॉर्म क्या है?

326 / 375

326. Which device is used for modulation and de-modulation? |
मॉड्यूलेशन और D-मॉड्यूलेशन के लिए किस डिवाइस का उपयोग किया जाता है?

327 / 375

327. What is the full form of ABC in first aid? |
प्राथमिक चिकित्सा में ABC का फुल फॉर्म क्या है?

328 / 375

328. What is the function of operating system? |
ऑपरेटिंग सिस्टम का कार्य क्या है?

329 / 375

329. Which is a primitive data type? |
कौन सा एक प्रिमिटिव डेटा प्रकार है?

330 / 375

330. Which key stops a PowerPoint presentation? |
कौन सी कुंजी पावरपॉइंट प्रेजेंटेशन को रोकती है?

331 / 375

331. Which method prints output with formatted numbers? |
कौन सी विधि स्वरूपित संख्याओं के साथ आउटपुट प्रिंट करती है?

332 / 375

332. Which primitive data type include integer? |
किस प्रिमिटिव डेटा प्रकार में पूर्णांक शामिल है?

333 / 375

333. Identify the correct IaaS provider among the following. |
निम्न में से सही IaaS प्रदाता चुनें।

334 / 375

334. Which type of software is PowerPoint? |
पावर प्वाइंट किस प्रकार का सॉफ्टवेयर प्रोग्राम है

335 / 375

335. How many different values can be returned by the error name property in javascript? |
जावास्क्रिप्ट में एरर नाम प्रॉपर्टी द्वारा कितने अलग-अलग वैल्यूज लौटाए जा सकते हैं?

336 / 375

336. Which shortcut key is used to open start menu? |
स्टार्ट मेन्यू खोलने के लिए उपयोग की जाने वाली शॉर्टकट कुंजी का नाम बताइए।

337 / 375

337. How the result will be C2 in the formula =if(A1=B1, C1, C2) when? |
सूत्र में परिणाम C2 कैसे =if(A1=B1, C1, C2) कब होगा?

338 / 375

338. Which starts with “=” sign in Excel 2010? |
Excel 2010 में कौन सा चिह्न “=” से प्रारंभ होता है?

339 / 375

339. What does PaaS stands for? |
PaaS का क्या अर्थ है?

340 / 375

340. Which is required to comment out a line of code in the Power Query Advanced Editor? |
Power Query Advanced Editor में कोड की एक लाइन पर कमेन्ट करने के लिए क्या आवश्यक है?

341 / 375

341. What is the use of < TD> tag in a table? |
टेबल में < TD> टैग का क्या उपयोग होता है?

342 / 375

342. Where would you find the option to insert a Pivot Table? |
आपको पिवट टेबल इन्सर्ट करने का विकल्प कहां मिलेगा?

343 / 375

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

344 / 375

344. Which function key runs a PowerPoint presentation? |
पावरपॉइंट प्रेजेंटेशन को चलाने के लिए किस फ़ंक्शन की का उपयोग किया जाता है?

345 / 375

345. Which keyword defines packages in Java? |
कौन सा कीवर्ड जावा में पैकेज को परिभाषित करता है?

346 / 375

346. Which data type in javascript returns the value ‘True’ or ‘False’? |
जावास्क्रिप्ट में कौन सा डेटा प्रकार 'सही' या 'गलत' है?

347 / 375

347. Which is a flow control statement in Java? |
जावा में फ़्लो कंट्रोल स्टेटमेंट कौन सा है?

348 / 375

348. Which statement is used create custom error in javascript? |
जावास्क्रिप्ट में कस्टम त्रुटि बनाने के लिए किस कथन का उपयोग किया जाता है?

349 / 375

349. What is the purpose of quick access toolbar? |
क्विक एक्सेस टूलबार का उद्देश्य क्या है?

350 / 375

350. Which HTML tag makes a text bold? |
कौन सा HTML टैग किसी टेक्स्ट को बोल्ड बनाता है?

351 / 375

351. What is the full form of WYSIWYG ? |
WYSIWYG का फुल फॉर्म क्या है?

352 / 375

352. Which is a free WordPress domain name provided to WordPress.com users? |
WordPress.com उपयोगकर्ताओं को प्रदान किया जाने वाला एक निःशुल्क WordPress डोमेन नाम कौन सा है?

353 / 375

353. Which query calculates a sum, average and then groups the result by two sets of values? |
कौन सी क्वेरी योग, औसत की गणना करती है और फिर परिणाम को मानों के दो सेटों के आधार पर समूहित करती है?

354 / 375

354. Which character redirects output into an existing file in Linux? |
लिनक्स में कौन सा कैरेक्टर आउटपुट को मौजूदा फ़ाइल में रीडायरेक्ट करता है?

355 / 375

355. Which JavaScript Code is use to write alert box? |
अलर्ट बॉक्स लिखने के लिए किस JavaScript कोड का उपयोग किया जाता है?

356 / 375

356. What is the full form of SSL? |
SSL का पूर्ण रूप क्या है?

357 / 375

357. Which is open source software? |
ओपन सोर्स सॉफ्टवेयर कौन सा है?

358 / 375

358. Which conditional formatting option shows the Value in bar chart? |
कौन सा कंडीशनल फॉर्मेटिंग ऑप्शन बार चार्ट में वैल्यू दिखाता है?

359 / 375

359. What is the order for the tupples of the relations? |
संबंधों के टुपल्स का क्रम क्या है?

360 / 375

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

361 / 375

361. What is Debugging? |
डिबगिंग क्या है?

362 / 375

362. Which type of chart is used in MS Excel? |
MS Excel में किस प्रकार के चार्ट का उपयोग किया जाता है?

363 / 375

363. Which is a step of merge process? |
मर्ज प्रक्रिया का एक चरण कौन सा है?

364 / 375

364. What is the maximum limit of rows in MS Excel 2010? |
MS Excel 2010 में पंक्तियों की अधिकतम सीमा क्या है?

365 / 375

365. Which type of E-commerce companies like Flipkart, Amazon and Myntra belongs to? |
Flipkart, Amazon और Myntra जैसी ई-कॉमर्स कंपनियां किस प्रकार की हैं?

366 / 375

366. What is the full form of IP? |
IP का फुल फॉर्म क्या है?

367 / 375

367. Which type of E- Commerce business platforms are amazon, ebay? |
Amazon, eBay किस प्रकार के E - Commerce बिजनेस प्लेटफॉर्म हैं?

368 / 375

368. Where is JavaScript code written? |
जावास्क्रिप्ट कोड कहां लिखा जाता है?

369 / 375

369. Which is the correct way of importing an entire package ‘pkg’? |
संपूर्ण पैकेज ‘pkg’ को आयात करने का सही तरीका कौन सा है?

370 / 375

370. Which software acts as a bridge between system software and hardware? |
कौन सा सॉफ्टवेयर सिस्टम सॉफ्टवेयर और हार्डवेयर के बीच ब्रिज का काम करता है?

371 / 375

371. Which term refers to the process of combining two or more cells to make one? | कौन सा शब्द दो या दो से अधिक कोशिकाओं को मिलाकर एक बनाने की प्रक्रिया को संदर्भित करता है?

372 / 375

372. Which of the following is not window object method? | इनमें से कौन सा विंडो ऑब्जेक्ट मेथड नहीं है?

373 / 375

373. Which protocol is based on the active directory database? | कौन सा प्रोटोकॉल एक्टिव डायरेक्ट्री डेटाबेस पर आधारित है?

374 / 375

374. Which is a ‘Date and Time’ function in Excel? | Excel में 'Date and Time' फ़ंक्शन कौन सा है?

375 / 375

375. What is the error in the below statement ?
Create function deptcount(dept_name varchar(20))
begin
declare d_count integer;
select count(*) into d_count;
from instructor
where instructor.dept_name= dept_name
return d_count;
end
नीचे दिए गए कथन में क्या त्रुटि है?
Create function deptcount(dept_name varchar(20))
begin
declare d_count integer;
select count(*) into d_count;
from instructor
where instructor.dept_name= dept_name
return d_count;
end

Your score is

The average score is 0%

0%

Leave a Comment

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

We Educate you wellITI Ke gyani
आईटीआई के साथ भी और आईटीआई के बाद भी

You cannot copy content of this page

Scroll to Top