Computer Operator and Programming Assistant (COPA) CBT Paper – Free Practice Set -6By itikegyani.com / December 8, 2024 0% 12 यह पेपर 2 घंटे का है 2 घंटे बाद पेपर अपने आप सबमिट हो जायेगा और आप चाहें तो 2 घंटे से पहले भी सबमिट कर सकते है|सॉरी समय समाप्त हो गया|Computer Operator and Programming Assistant CBT Paper (Quiz -6)इस पेपर में 75 प्रशन है जिसमे Trade Tehory के 50 प्रशन, Employability Skill के 25 प्रशन , प्रत्येक प्रशन 2 मार्क्स का है और किसी प्रकार की नेगेटिव मार्किंग नहीं है| (Workshop Calculation and Science और Engineering Drawing इसमें आती नहीं) 1 / 75 Category: Employability Skill CBT Paper (II)1. Which among the following is not an Online payment application? |निम्नलिखित में से कौन सा एक ऑनलाइन पेमेंट एप्लीकेशन नहीं है? A. Instagram | इंस्टाग्राम B. Banking Applications | बैंकिंग एप्लिकेशन C. BHIM UPI | भीम यूपीआई D. Google Pay | गूगल Pay 2 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)1. Which command stores the active document permanently? |कौन सा कमांड एक्टिव डॉक्यूमेंट को स्थायी रूप से स्टोर करता है? A. Save | सेव B. Save as | सेव एस C. Prepare | प्रेपरे D. Send | सेंड 3 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)2. What is Cloud Computing? |क्लाऊड कम्प्यूटिंग क्या है? A. Storing data in a database | डाटाबेस में डेटा संग्रहीत करना B. Used for creating graphics | ग्राफ़िक्स बनाने के लिए उपयोग किया जाता है C. Tool used to create an application | एप्लिकेशन बनाने के लिए उपयोग किया जाने वाला टूल D. Providing services like storage, servers, database, networking | स्टोरेज, सर्वर, डेटाबेस, नेटवर्किंग जैसी सेवाएं प्रदान करना 4 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)3. Which crime involves the usage of computer networks to create or access materials that sexually exploit underage persons? | किस अपराध में कम्प्यूटर नेटवर्क का उपयोग कर ऐसी सामग्री तैयार करना या उन तक पहुंच बनाना शामिल है जो कम उम्र के व्यक्तियों का यौन शोषण करती है? A. Cyber squatting | साइबर स्क्वेटिंग B. Child pornography | बाल पोर्नोग्राफी C. Assault by Threat | हमले की धमकी D. Cyber vandalism | साइबर बर्बरता 5 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)4. What the sort( ) function will return if ['one', 'four', 'three', 'two'] is a list object? |यदि ['one', 'four', 'three', 'two'] एक लिस्ट ऑब्जेक्ट है तो sort( ) फ़ंक्शन क्या रिटर्न करेगा ? A. ['four', 'three', 'two', 'one'] B. ['one', 'two', 'three', 'four'] C. ['four', 'one', 'three', 'two'] D. {"four","one","three","two"} 6 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)5. What is the full form of CSS? |CSS का फुल फॉर्म क्या है? A. Customized Style Sheet | कस्टमाइज्ड स्टाइल शीट B. Cascading System Style | कैस्केडिंग सिस्टम स्टाइल C. Computer Style Sheet | कंप्यूटर स्टाइल शीट D. Cascading Style Sheet | कैस्केडिंग स्टाइल शीट 7 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)6. Which package includes classes to create user interface like Button and Checkbox? |किस पैकेज में बटन और चेकबॉक्स जैसे यूजर इंटरफ़ेस बनाने के लिए क्लासेस शामिल हैं? A. Javnet | जव्नेट B. Javio | जविओ C. Javawt | जवाव्त D. Javlang | जव्लंग 8 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)7. Which is used to input the entry and give the result in a variable in a procedure? |किसी प्रक्रिया में प्रविष्टि को इनपुट करने और वेरिएबल में परिणाम देने के लिए किसका उपयोग किया जाता है? A. Put and get | रखना और प्राप्त करना B. Out and In | बाहर और अंदर C. In and out | अंदर और बाहर D. Get and put | प्राप्त करना और रखना 9 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)8. Which ribbon menu displays the Page Setup grouping of commands? |कौन सा रिबन मेनू कमांड के पेज सेटअप ग्रुपिंग को प्रदर्शित करता है? A. Home | होम B. Layout | ;लेआउट C. Insert | इन्सर्ट D. Review | रिव्यु 10 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)9. Which of the following HTML code is valid? |निम्न में से कौन सा HTML कोड मान्य है? A. <font color="red"> B. <font> C. <font> D. <font face="red"> 11 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)10. What is the sequence of characters? |कैरेक्टर का क्रम क्या है? A. Integer | इन्टिजर B. Character | करैक्टर C. Strings | स्ट्रिंग्स D. Classes | क्लासेज 12 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)11. What will be the output of the following given code?def mk(x):def mk1( ):print("Decorated")x( )return mk1def mk2( ):print("Ordinary")p = mk(mk2)p( )निम्नलिखित कोड का आउटपुट क्या होगा?def mk(x):def mk1( ):print("Decorated")x( )return mk1def mk2( ):print("Ordinary")p = mk(mk2)p( ) A. Decorated Decorated B. Decorated Ordinary C. Ordinary Decorated D. Ordinary 13 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)12. Which document view resembles the appearance of a web browser? |वेब ब्राउज़र के रूप में कौन सा डॉक्यूमेंट व्यू दिया गया है? A. Full screen reading | फुल स्क्रीन रीडिंग B. Web layout view | वेब लेआउट व्यू C. Draft view | ड्राफ्ट व्यू D. Outline view | आउटलाइन व्यू 14 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)13. Which is an attempt to steal, spy, damage computer systems or their associated information? | जो कंप्यूटर सिस्टम या उनसे संबंधित जानकारी को चुराने, जासूसी करने, नुकसान पहुंचाने का प्रयास है? A. Digital hacking | डिजिटल हैकिंग B. Cyber attack | साइबर हमला C. Cryptography | क्रिप्टोग्राफी D. Computer security | कंप्यूटर सुरक्षा 15 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)14. Which type of integration testing uses stubs? |किस प्रकार का इन्टीग्रेशन टेस्ट स्टब्स का उपयोग करता है? A. Both in top down and bottom up testing | दोनों टॉप डाउन और बॉटम अप टेस्टिंग में B. System testing | सिस्टम टेस्टिंग C. Top down testing | टॉप डाउन टेस्टिंग D. Bottom up testing | बॉटम अप टेस्टिंग 16 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)15. Which control panel is used to change the system date? |कंट्रोल पैनल में उस टूल का नाम बताएं जिससे हम सिस्टम की तारीख बदल सकते हैं? A. Fonts | फोंट्स B. Date and Time | तिथि और समय C. User Account | यूजर अकाउंट D. System | सिस्टम 17 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)16. What is the main advantage of intranet over than Internet? |इंटरनेट की तुलना में इंट्रानेट का मुख्य लाभ क्या है? A. Multi user | बहु उपयोगकर्ता B. Un-limited information | "असीमित जानकारी" C. Secured | सुरक्षित D. Public network | सार्वजनिक नेटवर्क 18 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)17. Which option inserts a Pivot Table? |कौन सा विकल्प पिवोट टेबल सम्मिलित करता है? A. Data Group in the Pivot Table Group | पिवट टेबल समूह में डेटा समूह B. Data Group In the Tables Group | तालिकाओं समूह में डेटा समूह C. Insert Tab - Tables Group | इंसर्ट टैब - तालिकाएँ समूह D. Formula Tab- Data Analysis Group | फ़ॉर्मूला टैब - डेटा विश्लेषण समूह 19 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)18. Which option creates a presentation automatically in PowerPoint? |पावर प्वाइंट में स्वचालित रूप से प्रस्तुति बनाने के लिए किस विकल्प का उपयोग किया जाता है? A. Standard test bar | स्टैंडर्ड टेस्ट बार B. Auto content wizard | ऑटो कंटेन्ट विज़ार्ड C. Blank Presentation | ब्लैंक प्रेजेंटेशन D. Template | टेम्पलेट 20 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)19. What is the purpose of expansion slot in mother board? |मदरबोर्ड में एक्सपेंशन स्लॉट का उद्देश्य क्या है? A. To insert the RAM | RAM इन्सर्ट के लिए B. To insert the mouse | माउस इन्सर्ट के लिए C. To insert the additional peripherals | अतिरिक्त बाह्य उपकरणों को इन्सर्ट करने के लिए D. To insert the keyboard | कीबोर्ड इन्सर्ट के लिए 21 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)20. What is the return type of the method parseInt( )? |विधि ParseInt ( ) का रिटर्न टाइप क्या है? A. Integer | इंटीजर B. Float | फ्लोट C. String | स्ट्रिंग D. Date | डेट 22 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)21. What type of computing technology refers to services and applications that typically run on a distributed network through virtualized resources? |किस प्रकार की कंप्यूटिंग टेक्नोलॉजी उन सर्विस और एप्लीकेशन को संदर्भित करती है जो आमतौर पर वर्चुअलाइज्ड रिसोर्स के माध्यम से वितरित नेटवर्क पर चलती हैं? A. Distributed Computing | डिस्ट्रिब्यूटेड कंप्यूटिंग B. Parallel Computing | पैरेलल कंप्यूटिंग C. Cloud computing | क्लाउड कंप्यूटिंग D. Soft Computing | सॉफ्ट कंप्यूटिंग 23 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)22. Which of the following is false statement about package in java? |जावा में पैकेज के बारे में निम्नलिखित में से कौन सा गलत कथन है? A. A set of classes and interfaces grouped together | एक साथ समूहीकृत कक्षाओं और इंटरफेस का एक सेट B. Packages cannot be considered as data encapsulation | पैकेजों को डेटा एनकैप्सुलेशन नहीं माना जा सकता C. Packages are used for preventing naming conflicts | नामकरण विवादों को रोकने के लिए पैकेजों का उपयोग किया जाता है D. Providing controlled access | कंट्रोल एक्सेस प्रदान करना 24 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)23. Which of the following is used to declare, construct, and initialize an array? |निम्नलिखित में से किसका उपयोग किसी ऐरे को घोषित करने,निर्माण करने और आरंभ करने के लिए किया जाता है? A. int arr [ ] [ ] = {1, 2, 3, 4}; B. int arr [ ] = {1, 2, 3}; C. int [ ] arr = { }; D. int [ ] arr = (1, 2, 3); 25 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)24. Who is the father of Java programming language? |जावा प्रोग्रामिंग भाषा के जनक कौन हैं? A. Bjarne Stroustrup | ब्जार्न स्ट्रॉस्ट्रप B. Dennis Ritchie | डेनिस रिची C. James Gosling | जेम्स गोसलिंग D. Larry Page | लैरी पेज 26 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)25. What is the full form of ADLC? |ADLC का पूर्ण रूप क्या है? A. Additional Development In Life Cycle | एडिशनल डेवलपमेंट लाइफ साइकिल B. Additional Design Life Cycle | एडिशनल डिजाईन लाइफ साइकिल C. Application Development Life Cycle | एप्लीकेशन डेवलपमेंट लाइफ साइकिल D. Application Design Life Cycle | एप्लीकेशन डिजाईन लाइफ साइकिल 27 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)26. Which function accepts input from the user? |कौन सा फंक्शन यूजर से इनपुट स्वीकार करता है? A. input( ) B. raw_input( ) C. rawinput( ) D. string( ) 28 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)27. Which is a type of database? |कौन सा डेटाबेस का एक प्रकार है? A. Relational | संबंधात्मक B. Decentralized | विकेंद्रीकृत C. Outlook | दृष्टिकोण D. Transition | संक्रमण 29 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)28. What is required for real time audio-video conferencing using two way communication? |दोतरफा संचार का उपयोग करते हुए वास्तविक समय ऑडियो-वीडियो कॉन्फ्रेंसिंग के लिए क्या आवश्यक है? A. Pixels to packets | पिक्सेल से पैकेट B. Frames to pixels | फ्रेम्स से पिक्सेल C. Receivers and senders | रिसीवर और सेंडर D. Packet to frames | पैकेट फ्रेम करने के लिए 30 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)29. What is the data limit for free Power BI adoption? |निःशुल्क Power BI अपनाने के लिए डेटा लिमिट क्या है? A. 2GB/client B. 1GB/client C. 512MB/client D. 3GB/client 31 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)30. What is the full form of EDI? |EDI का फुल फॉर्म क्या है A. Electronic Data Interconnection | इलेक्ट्रॉनिक डेटा इंटरकनेक्शन B. Electronic Direct Interchange | इलेक्ट्रॉनिक डायरेक्ट इंटरचेंज C. Electronic Data Information | इलेक्ट्रॉनिक डेटा इनफार्मेशन D. Electronic Data Interchange | इलेक्ट्रॉनिक डेटा इंटरचेंज 32 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)31. Which type does Portrait and Landscape belongs to? |पोर्ट्रेट और लैंडस्केप किस प्रकार से संबंधित है? A. Page Breaks | पृष्ठ ब्रेक B. Page Orientation | पृष्ठ अभिविन्यास C. Page Margins | पृष्ठ मार्जिन D. Page Arrangements | पृष्ठ व्यवस्था 33 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)32. Which shortcut key is used to open start menu? |स्टार्ट मेन्यू खोलने के लिए उपयोग की जाने वाली शॉर्टकट कुंजी का नाम बताइए। A. Windows Logo | विंडोज लोगो B. Shift | शिफ्ट C. Ctrl | कंट्रोल D. Alt | आल्ट 34 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)33. Which ribbon tab has Conditional Formatting option? |किस रिबन टैब में कंडीशनल फ़ॉर्मेटिंग विकल्प होता है? A. Data Tab | डेटा टैब B. Formula Tab | फॉर्मूला टैब C. Home Tab | होम टैब D. Insert Tab | इन्सर्ट टैब 35 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)34. On which application the principal arrival of PowerBI based on? |PowerBI का मुख्य आगमन किस अनुप्रयोग पर आधारित है? A. Microsoft word | माइक्रोसॉफ्ट वर्ड B. Microsoft PowerPoint | माइक्रोसॉफ्ट पावरप्वाइंट C. Microsoft excel | माइक्रोसॉफ्ट एक्सेल D. Microsoft outlook | माइक्रोसॉफ्ट आउटलुक 36 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)35. In which year Python language was developed? |पायथॉन भाषा का विकास किस वर्ष हुआ? A. 1972 B. 1995 C. 1981 D. 1991 37 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)36. Which option is used for tab setting? |टैब सेटिंग के लिए किस विकल्प का उपयोग किया जाता है? A. Horizontal ruler | क्षैतिज रूलर B. Vertical ruler | ऊर्ध्वाधर रूलर C. Vertical scroll bar | ऊर्ध्वाधर स्क्रॉल बार D. Status bar | स्थिति पट्टी 38 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)37. Which software interfaces the major hardware components of the computer with the OS? |कौन सा सॉफ्टवेयर कंप्यूटर के प्रमुख हार्डवेयर घटकों को ऑपरेटिंग सिस्टम के साथ इंटरफेस करता है? A. DOS B. BIOS C. POST D. CMOS 39 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)38. What is the purpose of Shift+Ctrl+N in Open Office? |ओपन ऑफिस में Shift+Ctrl+N का उद्देश्य क्या है? A. To create a new document | नया डॉक्यूमेंट बनाने के लिए B. To exit an application | एप्लीकेशन से बाहर निकलने के लिए C. To open a document | डॉक्यूमेंट ओपन करने के लिए D. To open templates and documents dialog | टेम्पलेट्स और डॉक्यूमेंट डायलॉग ओपन करने के लिए 40 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)39. Which type of website should be used for combination of MySQL and HTML? |MySQL और HTML के संयोजन के लिए किस प्रकार की वेबसाइट का उपयोग किया जाना चाहिए? A. Format | फॉर्मेट B. Flash | फ़्लैश C. Dynamic | डायनामिक D. Static | स्टेटिक 41 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)40. Which one enables the hosting providers to manage multiple domains on a single server? |कौन सा एक होस्टिंग प्रदाताओं को एक सर्वर पर कई डोमेन बनाने में सक्षम बनाता है? A. web server | वेब सर्वर B. Database server | डेटाबेस सर्वर C. SQL server | SQL सर्वर D. Network server | नेटवर्क सर्वर 42 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)41. Who developed javascript? |जावास्क्रिप्ट किसने विकसित की? A. Brendan Eich | ब्रेंडन ईच B. John Mauchly | जॉन मौची C. Brendan Rich | ब्रेंडन रिच D. John Eckerl | जॉन एकर्ल 43 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)42. Which is a valued DOMAIN name form? |निम्नलिखित में से कौन सा महत्वपूर्ण DOMAIN नाम है? A. www.nimi.gov.in B. www.nimi.test.gov.in C. wwww.nimi@gov,in D. www.nimi/test@gov/in 44 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)43. How the sum function of pivot table is changed to that value are automatically counted and not summed? | पिवट टेबल के sum फ़ंक्शन को उस मान में कैसे बदला जाता है, स्वचालित रूप से गिना जाता है और सारांशित नहीं किया जाता है? A. Change the format of the values in the Pivot Table to General Numbers | पिवोट टेबल में वैल्यूज के फॉर्मेट को जनरल नंबर्स में बदलें B. Change the format of the values in the pivot table to count | काउंट करने के लिए पिवट टेबल में वैल्यूज का फॉर्मेट बदलें C. Insert the COUNT formula ( = Count ( ) ) into the PivotTable | PivotTable में COUNT सूत्र ( = Count ( ) ) इन्सर्ट करना D. In the Calculations group, change the Summarize Values By to Count | कॅल्क्युलेशन्स ग्रुप में, समराइज़ वैल्यूज को काउंट में बदलें 45 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)44. What type of copy is produced by printer? |प्रिंटर द्वारा किस प्रकार की कॉपी तैयार की जाती है? A. Scan Copy | स्कैन कॉपी B. Soft Copy | सॉफ्ट कॉपी C. Xerox Copy | जैरोक्स कॉपी D. Hard Copy | हार्ड कॉपी 46 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)45. How many pairs of wires are there in category 5 UTP cable? |श्रेणी 5 UTP केबल में तारों के कितने जोड़े होते हैं? A. 4 B. 6 C. 3 D. 5 47 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)46. Which tool allows the user to select different layout for slide? |कौन सा टूल यूजर को स्लाइड के लिए अलग लेआउट चुनने की अनुमति देता है? A. New slide | न्यू स्लाइड B. Bullets | बुलेट्स C. Slide Layout | स्लाइड लेआउट D. Apply design | अप्लाई डिजाईन 48 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)47. What is the full form of OSS? |OSS का फुल फॉर्म क्या है? A. Open Synchronized Software | ओपन समन्वयित सॉफ्टवेयर B. Open System Software | ओपन सिस्टम सॉफ्टवेयर C. Open System Service | ओपन सिस्टम सेवा D. Open Source Software | ओपन सोर्स सॉफ्टवेयर 49 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)48. Which assignment operator is equivalent to a = a * 5? |कौन सा असाइनमेंट ऑपरेटर a = a * 5 के बराबर है? A. a * = 5 B. a = 5 C. a = 5 * 9 D. a = * 5 50 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)49. 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 में नीचे की ओर खींचते हैं, तो उन सेल में क्या सामग्री दिखाई देगी? A. Mon, Tue, Wed B. Mon, Tue, Blank Cell C. MON, TUE, WED D. Sun, Sun, Sun 51 / 75 Category: Computer Operator and Programming Assistant CBT Paper (TT)50. Which box is present in Pivot Table fields list? |पिवोट टेबल फ़ील्ड सूची में कौन सा बॉक्स मौजूद है? A. Column Labels | कॉलम लेबल B. Formulas | फ़ॉर्मूलास C. View | व्यू D. Layout | लेआउट 52 / 75 Category: Employability Skill CBT Paper (I)1. A wireless technology that connects a laptop to the internet is called ________ .|एक वायरलेस तकनीक जो लैपटॉप को इंटरनेट से जोड़ती है _____ कहलाती है। A. Bluetooth | ब्लूटूथ B. Desktop | डेस्कटॉप C. Source Network | सोर्स नेटवर्क D. WiFi | वाई - फाई 53 / 75 Category: Employability Skill CBT Paper (I)2. Fill in the correct question word. “_______________is the speaker at the function?”|सही प्रश्न शब्द भरें। “_______________is the speaker at the function?” A. Who | हु B. Why | व्हाई C. When | व्हेन D. What | व्हाट 54 / 75 Category: Employability Skill CBT Paper (I)3. Word that is pronounced the same as another word but differs in meaning is called __________ | वह शब्द जो किसी दूसरे शब्द के समान होता है, लेकिन अर्थ में भिन्न होता है, जिसे __________________ कहा जाता है A. homograph | होमोग्रफ़ B. syllable | शब्दांश C. homophone | होमोफ़ोन D. diphthong | संयुक्त स्वर 55 / 75 Category: Employability Skill CBT Paper (I)4. For “SMART” Goal, S stands for _________|“SMART” गोल के लिए, S का मतलब................... है A. Strengths | स्ट्रेंथ B. Specific | स्पेसिफिक C. Scientific | साइंटिफिक D. Social | सोशल 56 / 75 Category: Employability Skill CBT Paper (I)5. Which one of the following is a good office etiquette? |निम्नलिखित में से कौन सा एक अच्छा कार्यालय शिष्टाचार है? A. One should not be punctual to work | काम के लिए समय का पाबंद नहीं होना चाहिए B. One should have fancy mobile ring tone | एक के पास फैंसी मोबाइल रिंग टोन होना चाहिए C. One should litter one’s work place | व्यक्ति को अपने काम के स्थान पर कूड़ा डालना चाहिए D. One should dress formally | एक को औपचारिक रूप से पोशाक पहननी चाहिए 57 / 75 Category: Employability Skill CBT Paper (I)6. Gesture “Brisk and erect walking” shows ________|"तेज और सीधा चलना" वाला हाव-भाव..................... दर्शाता है - A. insecurity | इनसिक्योरिटी B. boredom | बोरडम C. confidence | आत्मविश्वास D. defensiveness | डिफेंसिवनेस 58 / 75 Category: Employability Skill CBT Paper (I)7. Which of the following websites are not popular for finding jobs?|निम्नलिखित में से कौन सी वेबसाइट नौकरी खोजने के लिए लोकप्रिय नहीं है? A. Twitter.com | ट्विटर डॉट कॉम B. Naukri.com | नौकरी डॉट कॉम C. Sheroes.com | शेरोएस डॉट कॉम D. LinkedIn.com | लिंक्डिन डॉट कॉम 59 / 75 Category: Employability Skill CBT Paper (I)8. RTI is _____/RTI है….। A. Right To Information / राइट टू इनफार्मेशन B. Read To Information / रेडी टू इनफार्मेशन C. Right Tern Information / राइट टर्म इनफार्मेशन D. Ready To Information / रेडी टू इनफार्मेशन 60 / 75 Category: Employability Skill CBT Paper (I)9. Which one is a cyber crime?/कौन एक साइबर अपराध है? A. Sending email / ईमेल भेजना B. Online gambling / ऑनलाइन गैम्बलिंग (जुआ) C. Chatting with friends / मित्रों से चैटिंग (गपशप) D. Online purchasing / ऑनलाइन पर्चेज़िंग (खरीद) 61 / 75 Category: Employability Skill CBT Paper (I)10. You withdraw Rs.500/- from an ATM. The ATM machine gives out Rs.5000/-. Which of the following would be ethically correct?/आप एटीएम से रु 500 /- निकालते हैं । एटीएम मशीन रु 5000 /- देती है l निम्नलिखित में से कौन सा नैतिक रूप से सही होगा? A. Make a complaint / शिकायत दर्ज़ करना B. Give the money to the poor / गरीबों को पैसा दे देना C. Take the money / रुपये ले लेना D. Drop the money near ATM / एटीएम के पास पैसे गिरा देना 62 / 75 Category: Employability Skill CBT Paper (I)11. The expansion of RAM is __________|"RAM" का विस्तार है - A. Random Access Memory | रैंडम एक्सेस मेमोरी B. Read Access Memory | रीड एक्सेस मेमोरी C. Random Access Machine | रैंडम एक्सेस मशीन D. Read Octet Machine | रीड ओकटेट मशीन 63 / 75 Category: Employability Skill CBT Paper (I)12. Same situation people should be treated in the same way ______/एक जैसी स्थिति वाले लोगों के साथ एक जैसा व्यवहार किया जाना चाहिए...। A. Equality / समानता B. unity / एकता C. status / हैसियत D. society / समाज 64 / 75 Category: Employability Skill CBT Paper (I)13. Having a clear idea of our personality including strengths, weaknesses, thoughts, beliefs, motivation, values etc is called __________.|हमारे व्यक्तित्व का स्पष्ट विचार रखने को ताकत, कमजोरियों, विचारों, विश्वासों, प्रेरणा, मूल्यों आदि सहित को __________ कहा जाता है। A. Threat | धमकी B. Myth | मिथ C. Belief | विश्वास D. Self Awareness | आत्म जागरूकता 65 / 75 Category: Employability Skill CBT Paper (I)14. Best way to identify customers needs is _____________ |ग्राहकों की जरूरतों की पहचान करने का सबसे अच्छा तरीका _________________ है A. By talking to them and survey | उनसे बात करके और सर्वे करके B. By advertising on newspaper | अखबार पर विज्ञापन देकर C. Through 3rd person | तीसरे व्यक्ति के माध्यम से D. By observation and Message | अवलोकन और संदेश द्वारा 66 / 75 Category: Employability Skill CBT Paper (I)15. _______ can help me learn English. |_______ मुझे अंग्रेजी सीखने में मदद कर सकता है। A. dedication | निष्ठा B. anger | क्रोध C. fear | डर D. shyness | शर्म 67 / 75 Category: Employability Skill CBT Paper (I)16. Entrepreneurship is also termed as…..|उद्यमिता को ........... भी कहा जाता है A. employment seeker | रोजगार चाहने वाला B. investor | निवेशक C. self employment | स्व रोजगार D. employer | नियोक्ता 68 / 75 Category: Employability Skill CBT Paper (I)17. Choose the correct context of the given expression in group discussion. "Excuse me, I would_________” |ग्रुप डिस्कशन में दिए गए अभिव्यक्ति का सही संदर्भ चुनें।. "Excuse me, I would_________” A. Interrupting | बाधा डालना B. Summarizing | संक्षेप में प्रस्तुत करना C. Agreeing | सहमत होना D. Emphasizing a point | एक बिंदु पर जोर देना 69 / 75 Category: Employability Skill CBT Paper (I)18. After receiving interview call, what is the next step? |साक्षात्कार कॉल प्राप्त करने के बाद, अगला कदम क्या है? A. Prepare the resume | रिज्यूम तैयार करें B. Send application letter | आवेदन पत्र भेजें C. Send resume | रिज्यूम भेजे D. Appear at interview | साक्षात्कार में में जाये 70 / 75 Category: Employability Skill CBT Paper (I)19. _____ is the brain of the computer. |_____कंप्यूटर का मस्तिष्क है। A. Central Processing unit (CPU) | सेन्ट्रल प्रॉसेसिंग यूनिट (सीपीयू) B. Desktop | डेस्कटॉप C. Window | विन्डो D. Keyboard | कीबोर्ड 71 / 75 Category: Employability Skill CBT Paper (I)20. Which one is a “don’t” in interview etiquette? |इंटरव्यू एटिकेट में “don’t” क्या है? A. Lie about your abilities to get job | नौकरी पाने के लिए अपनी क्षमताओं के बारे में झूठ बोलें B. Proper eye contact | प्रोपर आई कांटैक्ट C. Be confident | आत्मविश्वास रखो D. Dress appropriately | ठीक ढंग से कपड़े पहनें 72 / 75 Category: Employability Skill CBT Paper (I)21. Identify the improper term ______/अनुचित पद को पहचानिए …….। A. air pollution / वायु प्रदूषण B. water pollution / जल प्रदूषण C. sound pollution / ध्वनि प्रदूषण D. Green pollution / हरित प्रदूषण 73 / 75 Category: Employability Skill CBT Paper (I)22. A person with a growth mindset is always willing to ______|एक विकास मानसिकता वाला व्यक्ति हमेशा ...... तैयार रहता है। A. keep quiet | चुप रहने में B. become rich | अमीर बनने C. grow, change, learn | बढ़ो, बदलो, सीखो D. relax |आराम करने में 74 / 75 Category: Employability Skill CBT Paper (I)23. Which one is NOT a benefit of the role playing? |भूमिका निभाने का कौन सा लाभ नहीं है? A. Develops boredom | बोरियत पैदा करता है B. Develops listening skill | सुनने का कौशल विकसित करता है C. Builds confidence | आत्मविश्वास पैदा करता है D. Develops creative problem-solving skill | रचनात्मक समस्या-समाधान कौशल विकसित करता है 75 / 75 Category: Employability Skill CBT Paper (I)24. Which one of these phrases is not related to a telephone call? |इनमें से कौन-सा वाक्यांश एक टेलीफोन कॉल से संबंधित नहीं है? A. Call back | कॉल बैक B. Make up | मेकअप C. Hold on | होल्ड ऑन D. Pick up | पिक अप Your score isThe average score is 30% 0% Restart quiz Exit WhatsApp और YouTube चैनल से जुड़े रहनाWhats App Electrician Free CBT Practice SetCOPA Free Practice SetDraughtsman Civil Free CBT Practice SetDraughtsman Mechanic Free CBT Practice SetITI CBT Practice Set Second YearElectronic Mechanic Free CBT Practice Set अत्यधिक चर्चा में आईटीआई में एडमिशन के लिए शारीरिक और मानसिक रूप से फिट होना क्यों जरूरी है? – जानिए दिव्यांग आरक्षण के नियम🎯 Uttar Pradesh – ITI Admission form 2025 Start – Apply Online PRN Generate करने के लिए आधार कार्ड क्यों जरूरी है? ITI छात्रों के लिए वेरिफिकेशन का अंतिम मौका: न चूकें! सत्र 2024 West Bengal ITI Admission form 2025 Start – Apply Online नॉर्दर्न कोलफील्ड लिमिटेड (एन०सी०एल) तकनीशियन भर्ती 2025 – आवेदन करें 200 पोस्ट के लिए।