13 M3R5.1 Practice Set 1 1 / 100 Q60. To repeat a particular task, we use किसी विशेष कार्य को बार बार करने के लिए प्रयोग किया जाता है (A) Input (B) Loop (C) Output (D) Condition 2 / 100 Q63. is a connector showing the relationship between the representative shapes. प्रतिनिधि आकृतियों के बीच संबंध दिखाने वाला एक कनेक्टर है। (A ) Line (B ) Arrow (C) Process (D) Box 3 / 100 Q14. The process of finding errors in code is called as code में एरर्स को फाइंड करने की क्रिया क्या कहलाती है (A) Compiling (B) Running (C) Testing (D) Debugging 4 / 100 Q89. निम्नलिखित में से कौन सा एक इनवैलिड वैरिएबल है? Which of the following is an invalid variable? (A.) my_string_1 (B.) 1st_string (C.) foo (D.)_myvar 5 / 100 Q86. पायथन प्रोग्राम के विभिन्न भागों को दिए गए नाम Names given to different parts of a Python program are हैं। (A.) Identifiers (B.) Function (C.) Keywords (D.) Literals 6 / 100 Q46. Top-down approach is followed in structural programming. टॉप डाउन एप्रोच को स्ट्रक्टरड प्रोग्रामिंग फॉलो करता है (A) True (B) False (C) Can't say (D) May be 7 / 100 किस view में Text Box insert कर सकते हैं? (A) Slide View (B) Style View (C) Handout View (D) Normal View 8 / 100 Q23. Which of the following software is required to run the hardware निम्न में से ऐसा कौन सा सॉफ्टवेर है जो किसी हार्डवेयर को रन कराने के लिए जरुरी है। (A) Task Manager (B) Task Bar (C) Program Manager (D) Device Driver 9 / 100 Q77. Pictorial representation of an algorithm is called as एल्गोरिथम के सचित्र निरूपण को कहा जाता है। (a) Statement (b) Program (c) Flow chart (d) All of above 10 / 100 Q81. Which of following program planning tool allows programmers to plan program logic by writing program instruction in an ordinary language. निम्नलिखित में से कौन सा प्रोग्राम प्लानिंग टूल प्रोग्रामर्स को सामान्य भाषा में प्रोग्राम इंस्ट्रक्शन लिखकर प्रोग्राम लॉजिक की योजना बनाने की अनुमति देता है। a. Flowchart b. Pseudo Code c. Program d. Looping 11 / 100 Q43. Any algorithm is a program. कोई भी एल्गोरिदम एक प्रोग्राम है। (A) True (B) False (C) Can't say (D) May be 12 / 100 Q73. Which symbol is used as a flow line to connect two blocks in a flow chart ? फ्लो चार्ट में दो ब्लॉक को जोड़ने के लिए फ्लो लाइन के रूप में किस चिन्ह का उपयोग किया जाता है? (a) arrow (b) circle (c) box (d) parallelogram 13 / 100 Q31. What is the purpose of a compiler? कम्पाइलर का उद्देश्य क्या है ? a. To translate high-level programming code into machine code b. To execute a program line by line c. To debug and fix errors in a program d. To analyze and optimize program performance 14 / 100 Q34. Function of a compiler is to कम्पाइलर का फंक्शन क्या होता है ? (A) put together the file and functions that are required by the program (B) translate the instructions into a form suitable for execution by the program (C) Load the executable code into the memory and execute them (D) Allow the user to type the program 15 / 100 Q82. Indentation in a program एक प्रोग्राम में इंडेंटेशन है a. Improves its readability and understanding b. is compulsory c. both A and B d. None of these 16 / 100 Q45. is part of user documentation. यूजर डॉक्यूमेंटेशन का भाग है (A) Class Diagram (B) Code Comment (C) Use Case (D) Installation Guide 17 / 100 Q1. एल्गोरिदम द्वारा प्रतिनिधित्व नहीं किया जा सकता है: Algorithms cannot be represented by: (A.) Pseudo codes (B.) Syntax (C.) Flowcharts (D.) Programs 18 / 100 Q74. For performing the addition of two numbers, which of the following symbol in a flow chart are used ? दो संख्याओं का योग करने के लिए, फ्लो चार्ट में निम्नलिखित में से किस चिन्ह का उपयोग किया जाता है? (a) Control flow (b) Terminal (c) Processing (d) Decision 19 / 100 Q72. Kite/diamond symbol in flow chart is used for के लिए किया फ्लो चार्ट में काईट/डायमंड के प्रतीक का प्रयोग जाता है। anXp (a) Execution Exe (b) Decision (c) Statement (d) All of above 20 / 100 Q79. Which of the following is not a valid pseudo code convention? a) Using indentation for code blocks b) Using meaningful variable names c) Including comments to explain code logic d) Using excessive whitespace for readability 21 / 100 Q83. पायथन एक भाषा है। Python is a/an language. (A.) High Level (B.) Low Level (C.) Procedural (D.) Difficult 22 / 100 Q100. निम्नलिखित में से कौन सा पायथन में एक वैध पूर्णांक प्रकार मान नहीं है? Which of the following is not a legal integer type value in Python? (A.) Decimal (B.) Octal (C.) Hexadecimal (D.) Roman 23 / 100 48. Slide की thumbnail pictures कहाँ होती हैं? (A) Slide Pane (B) Sub-Slide Pane (C) Window Pane (D) Slides Pane 24 / 100 Q30. What is a programming language? प्रोग्रामिंग लैंग्वेज क्या होता है ? a. A set of instructions for a computer to perform specific tasks b. A physical device that executes computer programs c. The hardware components of a computer system d. A data structure used for storing information 25 / 100 Q58. What will be the output of the following pseudo code, where a represent XOR operation? Integer a, b, c Set b =3, a = 2 c = a^b Print a + b + c (a) 4 (b) 3 (c) 5 (d) 6 26 / 100 Q53. What will be the output of the following pseudo-code? Integer a Set a = 4 do print a + 2 a = a - 1 while equals 0) end while (A) 6666 (B) 6 5 4 3 (C) 6789 (D) 6 8 10 12 27 / 100 Q15. Testing is known as: टेस्टिंग जाना जाता है (A) A stage of all projects/ सभी प्रोजेक्ट का स्टेज (B) Finding broken code / ब्रोकन code को फाइंड करना (C) Evaluating deliverable to find errors / एरर फाइंड करना ताकि उसकी डिलीवरी का मूल्यांकन हो (D) None of the above / कोई नहीं 28 / 100 Q50. Method which uses a list of well-defined instructions to complete a task starting from a given initial state to end state is called as? वह विधि जो किसी कार्य को आरंभिक अवस्था से लेकर अंतिम अवस्था तक पूरा करने के लिए अच्छी तरह से परिभाषित निर्देशों की सूची का उपयोग करती है, कहलाती है? (A) Program (B) Algorithm (C) Flowchart (D) Both A and C 29 / 100 Q54. What will be the output of the following pseudocode, where a represent XOR operation? Integer a, b, c Set b = 4 a = 3 c=a^b print c (A) 4 (B) 3 (C) 5 (D) 7 30 / 100 Q87. पायथन का मोड टाइप किए गए वक्तव्य का त्वरित परिणाम देता है। The mode of Python gives instant result of typed statement. (A.) Interactive Mode (B.) Script Mode (C.) Combination of Interactive and Script modes (D.) All of these 31 / 100 Q19. What are the three different types of algorithm constructions अल्गोरिथम कंसत्ट्रक्सन के तीन प्रकार कौन कौन से है। (A) Input/Output, Decision, Repeat (B) Input, Output, Process (C) Loop, Input/Output, Process (D) Sequence, Selection, Repeat 32 / 100 Q20. Algorithms cannot be represented by अल्गोरिथम को प्रदर्शित नही किया जा सकता है। (A) pseudo codes (B) syntax (C) flowcharts (D) programs 33 / 100 Q69. A process is expressed in a flowchart by फ्लोचार्ट में एक प्रक्रिया द्वारा व्यक्त की जाती है। (A) Rectangle (B) A circle (C) Parallelogram (D) A diamond 34 / 100 Q75. Which of the following is not a control structure निम्न में से कौन सा एक कण्ट्रोल स्ट्रक्चर नहीं है (a) Loop (b) Process (c) Decision (d) None of these 35 / 100 Q85. निम्नलिखित पायथन कोड का आउटपुट क्या होगा? What will be the output of the following Python code? python print('ab12'.isalnum()) (A. ) True (B. ) False 36 / 100 Q88. पाइथन कोड में कमेंट्स कैसे डालते हैं? How do you insert comments in Python code?** (A.)// This is a comment (B.)# This is a comment (C.) <!- This is a comment --> (D.)/* This is a comment */ 37 / 100 Q93. निश्चित मान वाले डेटा आइटम कहलाते हैं। Data items having fixed value are called (A.) Identifiers (B.) Functions (C.) Keywords (D.) Literals 38 / 100 Q66. The operation represented by a parallelogram is called as. पैरलेलोग्राम किस ऑपरेशन को प्रदर्शित करता है। (A) Input/Output (B) Comparison (C) Assignment (D) Conditions 39 / 100 Q70. Operations to be repeated a certain number of times are done by एक निश्चित संख्या में दोहराए जाने वाले ऑपरेशन द्वारा किए जाते हैं। (A) Selection (B) Sequential (C) Simple (D) Loop 40 / 100 Q35. What is testing process first goal. टेस्टिंग की क्रिया का पहला गोल क्या होता है ? (A) Bug Prevention (B) Analysis (C) Testing (D) All of the Above 41 / 100 Q2. फ्लोचार्ट में डायमंड प्रतीक में आमतौर पर क्या होता है? In a flowchart, what does a diamond symbol typically contain? (A.) A calculation (B.) An input/output operation (C.) A condition to be evaluated (D.) The start or end of a process. 42 / 100 Q98. पायथन में आरक्षित कीवर्ड चुनें। Select the reserved keyword in Python. (A.) else (B.) import (C.) print (D.) all Il of these 43 / 100 Q56. What will be the output of the following pseudo code? Interger a, b Set a = 10, b=5 a=a mod(a-6) b = b mod(b-2) print a-b (a) 4 (b) 0 (c) 1 (d) 8 44 / 100 Q39. Which of the following is an advantage of using an assembler? निम्नलिखित में से कौन सा असेम्बलर का एक विशेषता है ? a. Faster execution speed b. Platform independence c. Dynamic memory allocation d. better error handling 45 / 100 Q94. एस्केप सीक्वेंस को के रूप में माना जाता है। Escape sequences are treated as (A.) Strings (B.) Characters (C.) Integers (D.) None one of of Thes These 46 / 100 Q71. Which of the following symbols is used to represent output in a flow chart ? फ्लो चार्ट में आउटपुट को दर्शाने के लिए निम्न में से किस चिन्ह का प्रयोग किया जाता है? (a) Square (b) Circle (c) Parallelogram (d) Triangle 47 / 100 Q16. Which of the following executes the programming code line by line? निम्न में से कौन प्रोग्रामिंग code को लाइन बाई लाइन एक्जिक्यूट करता (A) Compiler (B) Interpreter (C) Executer (D) Translator 48 / 100 Q12. In computer science, algorithm refers to a pictorial representation of a flowchart. कंप्यूटर साइंस में अल्गोरिथम, फ्लोव्चार्ट के पिक्चोरिअल रिप्रेजेंटेसन को रेफर करता है (A) True B) False C) Can't say D) May be 49 / 100 Q40. Which of the following is an example of a compiled programming language? निम्नलिखित में से कौन सी compiled प्रोग्रामिंग लैंग्वेज है ? a. Python b. JavaScript c. C++ d. Ruby 50 / 100 Q92. पाइथन में एक क्लास को परिभाषित करने के लिए किस कीवर्ड का उपयोग किया जाता है? Which keyword is used to define a class in Python? (A. ) className (B. ) def (C. ) class (D. ) define 51 / 100 Q65. Hierarchy in a pseudo-code can be shown by...... सूडो कोड में पदानुक्रम किसकी सहायता से दिखाते है । (A) Curly Braces (B) Round Brackets (C) Indentation (D) Semicolon 52 / 100 Q32. Which of the following is a high-level programming language? निम्नलिखित में से कौन सी हाई-लेवल प्रोग्रामिंग लैंग्वेज है ? a. Assembly language b. Machine language c. C++ d. 0/1 53 / 100 Q90. निम्नलिखित में से कौन सा न्यू लाइन कैरेक्टर के लिए एक एस्केप सीक्वेंस है? Which of the following is an escape se sequence for a new line character? (A.) la (B. ) t (C.) n (D.)b 54 / 100 Line, curve, freeform या scribble tools चुनने के लिए कौन सा option है? (A) Draw custom path (B) Create effect (C) All of the options (D) Insert motion path 55 / 100 Q80. What does the keyword "input" represent in pseudo code? सूडो कोड में "इनपुट" कीवर्ड क्या दर्शाता है ? a) To display output b) To perform calculations c) To get user input d) To define a loop 56 / 100 Q36. What is the purpose of conditional statements in programming? a. To repeat a block of code multiple times b. To perform mathematical calculations c. To make decisions based on certain conditions d. To store and retrieve data 57 / 100 Q55. What will be the output of the following pseudocode? Integer a, b Set a = 9 b = 5 a= a mod (a-3) b = b mod(b-3) print a+b (A) 4 (B) 5 (C) 9 (D) 8 58 / 100 Q6. एक प्रक्रिया को फ्लोचार्ट में व्यक्त किया जाता है: A process is expressed in a flowchart by: (A.) Rectangle (B.) Circle C.) Parallelogram (D.) Diamond 59 / 100 Q9. एक विस्तृत फ़्लोचार्ट को किस रूप में जाना जाता है? A detailed flowchart is known as: (A.) Micro B.) Union C.) Macro (D.) Stack 60 / 100 Q18. is a set of functions you want to include in your application. फंक्शन का सेट होता है जो अपने एप्लीकेशन में (a) open (b) module (c) convert (d) app 61 / 100 Q48. Software mistakes during coding are known as... कोडिंग के समय सॉफ्टवेर में मिस्टेक होना क्या कहलाता है (A) errors (B) bugs (C) failures (D) defects 62 / 100 Q29. What is an algorithm? एक अल्गोरिथम क्या है ? a. A programming language b. A step-by-step procedure for solving a problem c. A computer hardware component d. A data structure 63 / 100 Q61. Actual instructions in flowcharting are represented in फ्लोचार्टिंग में वास्तविक निर्देशों को है। में दर्शाया जाता हैं। (A) Cir Circles (B) Boxes (C) Arrows (D) Lines 64 / 100 Q49. Any algorithm is a program written according to proper syntax. कोई अल्गोरिथम प्रोग्राम होता है जिसे प्रॉपर सिंटेक्स के अनुसार लिखते है (A) True (B) False (C) Can't say (D) May be 65 / 100 Q22. An algorithm that calls itself directly or indirectly is called as.... ऐसा अल्गोरिथम जो अपने आप को स्वयं कॉल करता है उसे कहा जाता है anXp (A) Sub Function (B) Recursion (C) Reverse Polish Notation (D) Traversal Algorithm 66 / 100 Q51. What will be the output of the following pseudo-code? Integer a Set a = 5 do print a - 2 a=a-1 while (a not equals 0) end while (A) 530 (B) 30 (C) infinite loop (D) None of these 67 / 100 Q95. निम्नलिखित में से कौन सा टैब कैरेक्टर के लिए एक एस्केप सीक्वेंस है? Which of the following is an escape sequence for a tab character? (A.) a (B.) t (C.)n (D.)b 68 / 100 Q96. आपको पायथन के लिए भुगतान नहीं करना पड़ता है और आप इसके सोर्स कोड को भी देख सकते हैं। इसका मतलब है कि पायथन है। You do not have to pay for Python and you can view its source code too. It means Python is (A.) Free and Open Source (B.) Freeware (C.) Open source (D.) Shareware 69 / 100 Q91. पायथन के विशेष अर्थ वाले शब्द, जो विशिष्ट कार्यक्षमता के लिए निर्धारित होते हैं, उन्हें_____ कहा जाता है। Special meaning words of Python, fixed for specific functionality are called______ (A.) Identifiers (B.) Functions (C.) Keywords (D.) Literals 70 / 100 Q28. Debugging is the process of fixing a in the software.डिबगिंग, सॉफ्टवेर में को फिक्स करने की क्रिया को कहते है। (a) procedure (b) function (c) bug (d) None of these 71 / 100 Q27. The brain of computer system is कंप्यूटर सिस्टम का ब्रेन किसे कहा जाता है. (a) RAM (b) CPU (c) ROM (d) Control trol Unit Unit 72 / 100 Q97. input() के माध्यम से पढ़े गए मान को पूर्णांक प्रकार में परिवर्तित करने के लिए, () का उपयोग किया जाता है। To convert the read value through input() into integer type,__________() is used. (A.) floating (B.) float (C.) int (D.) integer 73 / 100 Q33. Identify the correct sequence of steps to run a program. प्रोग्राम को रन करने का सही सीक्वेंस क्या होता है ? (a) Link, Load, Code, Compile, Execute (b) Code, Compile, Link, Execute, Load (c) Code, compile, Link, Load, Execute (d) Compile, Code, Link, Load, Execute 74 / 100 Q59. Flow charts and Algorithms are used for. फ्लोचार्ट और अल्गोरिथम का प्रयोग किया जाता है.. (a) Better Programming (b) Optimized Coding (c) Systematic testing (d) All of above 75 / 100 Q64. A flowchart that outlines the main segments of a program. एक फ्लोचार्ट जो प्रोग्राम के मेन सेगमेंट को बताता है। (A) Queue (B) Macro (C) Micro (D) Union 76 / 100 Q62. Flowcharts and algorithms are used for फ्लोचार्ट और अल्गोरिदम का प्रयोग किया जाता है (A) Better programming (B) Efficient coding (C) Easy testing and debugging (D) All of the above 77 / 100 Q38. Which of the following is an example of an interpreted programming language? निम्नलिखित में से कौन सी इंटरप्रेटेड प्रोग्रामिंग लैंग्वेज है ? a. Java b. C# c. C d. Python 78 / 100 Q17. A computer programme that manages and controls a computer's activity: एक कंप्यूटर का प्रोग्राम जो कंप्यूटर के सारे एक्टिविटी को मैनेज और (A) Interpreter (B) Modem (C) Compiler (D) Operating system 79 / 100 Q99. input() प्रकार के रूप में मान लौटाता है। The input() returns the value as type. (A.) Integer (B.) String (C.) Floating poin (D.) None of these 80 / 100 Q52. What will be the output of the following pseudo code, where a represent XOR operation? Integer a, b, c Set b5, a = 1 c=a^b Print c (A) 4 (B) 3 (C) 5 (D) 7 81 / 100 Q41. When an algorithm is written in the form of a programming language, it becomes a: जब एक एल्गोरिथम को प्रोग्रामिंग भाषा के रूप में लिखा जाता है, तो यह बन जाती है: (A) Flowchart (B) Program (C) Pseudo code (D) Syntax 82 / 100 Q21. The way for solving a problem step by step is known as.. किसी प्रॉब्लम को स्टेप बाई स्टेप साल्व करना कहलाता है (A) Design (B) Planning (C) Algorithm (D) Execution 83 / 100 Q67. In a flow chart, which of the following is used to test the condition? फ्लो चार्ट में, निम्नलिखित में से किसका उपयोग स्थिति का परीक्षण करने के लिए किया जाता है? (A) Terminal (B) Process (C) Input/Output (D) Decision 84 / 100 Q84. निम्नलिखित में से कौन सा Python IDE नहीं है? Which of the following is not a Python IDE? (A.) IDLE (B.) Spyder (C.) Jupyter Notes (D.) Sublime Test 85 / 100 Q26. In which software development phase quality of software is documented ? किस सॉफ्टवेर डेवलपमेंट फेज में सॉफ्टवेर के क्वालिटी को डॉक्यूमेंट किया जाता है। (a) Testing (b) Delivery (c) Idea (d) Development 86 / 100 Q37. What is the purpose of a loop in programming? a. To define the structure of a program b. To execute program instructions c. To repeat a block of code multiple times d. To store and manipulate data 87 / 100 Q24. Structured program can be broken into assign to more than one developer. Structured प्रोग्राम में बहुत सारे डेवलपर को कोड छोटे में ब्रेक करके दिया जाता है। ( a) Segments (b) Modules (c) Units (d) All of above 88 / 100 Q44. An explicit set of step by step specific instructions that solve a problem with an end or a solution. चरण-दर-चरण विशिष्ट निर्देशों का एक स्पष्ट सेट जो किसी समस्या को अंत या समाधान के साथ हल करता है। (A) Algorithm (B) Flowchart (C) Pseud Code (D) None 89 / 100 Q68. The process of drawing a flowchart for an algorithm is called. एल्गोरिथम के लिए फ्लोचार्ट बनाने की प्रक्रिया कहलाती है। (A) Performance (B) Algorithmic Representation (C) Evaluation (D) Flowcharting 90 / 100 Q76. The sequence logic will not be used while सीक्वेंस लॉजिक का उपयोग नहीं होगा जब... (a) Subtracting two numbers (b) Comparing two numbers (c) Accepting input to the user (d) Adding two numbers 91 / 100 Presentation को web page में embed करने के लिए कौन सी site उपयोगी है? (A) PPTme (B) Vimeo (C) Slide Share (D) YouTube 92 / 100 Q78. The connector symbol for flow chart is फ्लो चार्ट के लिए कनेक्टर सिंबल है। (a) Circle (b) Parallelogram (c) Diamond (d) All of above 93 / 100 Q13. Which of the following language is understood by computer? निम्नलिखित में से कौन सी भाषा कंप्यूटर समझता है। (A) Machine language (B) Assembly language (C) High-level language D) None of the above 94 / 100 Q25. Which translator is used to convert assembly language into machine language? निम्न में से कौन सा ट्रांसलेटर असेंबली लैंग्वेज को मशीन लैंग्वेज में बदलता है। (a) Compiler (b) Interpreter (c) Assembler (d) None of these 95 / 100 Q57. What will be the output of the following pseudo code, where & represent AND operation? Interger a, b, c Set b =5, a = 1 c = a & b print c (A) 1 (B) 3 (C) 5 (D) 7 96 / 100 Q11. An algorithm represented in the form of programming languages is एक अल्गोरिथम को प्रोग्रामिंग भाषा से रिप्रेजेंट कर देते है तो वह कहलाता है (A) Flowchart (B) Pseudo code (C) Program (D) None of above 97 / 100 Q47. A scans the entire program and translates it as a whole into machine code. एक सारे प्रोग्राम को एक बार में लेता है और उसको मशीन code में बदल डेटा है। (A) Compiler (B) Interpreter (C) Debugger (D) None of above 98 / 100 Q5. जब एक एल्गोरिद्म को एक प्रोग्रामिंग भाषा के रूप में लिखा जाता है तो यह बन जातीहैः When an algorithm is written in the form of a programming language, it becomes a: (A.) Flowchart B.) Program C.) Pseudo code (D.) Syntax 99 / 100 Q10. एल्गोरिथम के लिए फ़्लोचार्ट बनाने की प्रक्रिया कहलाती है: The process of drawing a flowchart for an algorithms is called: A.) Performance B.) Algorithmic Representation C.) Evaluation (D.) Flowcharting 100 / 100 Q42. In computer science, algorithm refers to a special method usable by a computer for the solution to a problem. कंप्यूटर विज्ञान में, एल्गोरिथ्म एक समस्या के समाधान के लिए कंप्यूटर द्वारा उपयोग की जाने वाली एक विशेष विधि को संदर्भित करता है। (A) True (B) False (C) Can't say (D) May be Your score is