MCQOPTIONS
 Saved Bookmarks
				This section includes 426 Mcqs, each offering curated multiple-choice questions to sharpen your 7th Class knowledge and support exam preparation. Choose a topic below to get started.
| 51. | 
                                    The ability to combine name and addresses with a standard document is called____ | 
                            
| A. | document following | 
| B. | database management | 
| C. | mail merge | 
| D. | All of these | 
| E. | None of these | 
| Answer» B. database management | |
| 52. | 
                                    Word is a part of _____. | 
                            
| A. | text Group | 
| B. | symbols Group | 
| C. | home Group | 
| D. | page Group | 
| E. | None of these | 
| Answer» B. symbols Group | |
| 53. | 
                                    Ravi wants to insert page numbers in his document. Which one of the following steps Ravi will use? | 
                            
| A. | Home \[\to \] Page Numbers | 
| B. | Insert \[\to \] Page Numbers | 
| C. | View \[\to \] Page Numbers | 
| D. | Review \[\to \] Format \[\to \] Page Numbers | 
| E. | None of these | 
| Answer» C. View \[\to \] Page Numbers | |
| 54. | 
                                    Which one of the following is NOT a function of MS-Excel? | 
                            
| A. | AVERAGE | 
| B. | ADD | 
| C. | MAX | 
| D. | MIN | 
| Answer» C. MAX | |
| 55. | 
                                    What is the function of redo command? | 
                            
| A. | It can redo the previously undone actions. | 
| B. | It can undo the redone actions. | 
| C. | It can clear the desired data. | 
| D. | It can open the previously closed document. | 
| Answer» B. It can undo the redone actions. | |
| 56. | 
                                    Read the following statements :Statement: 1. The cell is the unit place of worksheet where text, number and formulas are entered.Statement: 2. The cell is the unit place of worksheet where only formulas are entered.Statement: 3. The cell is the unit place of worksheet where only texts are entered.Which one of the following is correct with respect to the above statements? | 
                            
| A. | Statement 1 is true | 
| B. | Statement 2 is true | 
| C. | Statement 3 is true | 
| D. | All statements are true | 
| E. | None of these | 
| Answer» B. Statement 2 is true | |
| 57. | 
                                    How are the string constants represented? | 
                            
| A. | They are enclosed in a double quotation mark. | 
| B. | They are enclosed in a single quotation mark. | 
| C. | They are enclosed in square brackets. | 
| D. | They are enclosed in parentheses. | 
| Answer» B. They are enclosed in a single quotation mark. | |
| 58. | 
                                    In BASIC language, what are the values which do not change during the execution of program? | 
                            
| A. | Variables | 
| B. | Constants | 
| C. | Operators | 
| D. | Error | 
| Answer» C. Operators | |
| 59. | 
                                    If the QBASIC window fills the entire screen, you can press __ to make it smaller. | 
                            
| A. | Alt + Enter | 
| B. | Alt + Esc | 
| C. | Alt + F4 | 
| D. | Alt + F5 | 
| Answer» B. Alt + Esc | |
| 60. | 
                                    What is the shortcut key to run a QBASIC program? | 
                            
| A. | Alt + F9 | 
| B. | Alt + F5 | 
| C. | Shift + F5 | 
| D. | Shift + F9 | 
| Answer» D. Shift + F9 | |
| 61. | 
                                    BASIC was developed in the year___. | 
                            
| A. | 1964 | 
| B. | 1966 | 
| C. | 1968 | 
| D. | 1962 | 
| Answer» B. 1966 | |
| 62. | 
                                    What does the given command perform? PRINT P$, Q, R | 
                            
| A. | The expression P$, Q, R is printed. | 
| B. | The variable Q receives the values of P$ + R. | 
| C. | Two numerical values and one string value are printed. | 
| D. | An error message is displayed. | 
| Answer» D. An error message is displayed. | |
| 63. | 
                                    Avani wrote the given program in QBASIC. But while executing it, an error ocuurred. Identify the error. 10 LET A$ = ?INDIA? 20 LET B$ = A$ + ?1? 30 PRINT B$$ | 
                            
| A. | Line 20 has a string to assign numeric | 
| B. | Line 30 has too many $ signs | 
| C. | Line 10 has directly given string to a variable | 
| D. | There is no error in the program | 
| Answer» C. Line 10 has directly given string to a variable | |
| 64. | 
                                    Which of the following operators are used in conditional statement? | 
                            
| A. | Relational operators | 
| B. | Logical operators | 
| C. | Arithmetic operators | 
| D. | Bitwise operators | 
| Answer» B. Logical operators | |
| 65. | 
                                    Identify the number of the row which has an error 10 REM A program to find the even and odd numbers 20 CLS 30 INPUT "Enter number"; A 40 IF A % 2 = 0 THEN 50 PRINT A; "is even number" 60 ELSE 70 PRINT A; "is odd number" 80 END | 
                            
| A. | 40 | 
| B. | 30 | 
| C. | 80 | 
| D. | 10 | 
| Answer» D. 10 | |
| 66. | 
                                    What will be the output of the given Q. BASIC program? LET P$ = ?BRAIN? LET Q$ = ?MAPPING? LET R$ = P$ + Q$ PRINT R$ | 
                            
| A. | BRAIN MAPPING | 
| B. | MAPPING BRAIN | 
| C. | BRAIN MAPPING | 
| D. | MAPPING BRAIN | 
| Answer» D. MAPPING BRAIN | |
| 67. | 
                                    Which of the following is the file name of QBASIC program? | 
                            
| A. | QBASIC.exe | 
| B. | QBASIC.doc | 
| C. | QBASIC.ppt | 
| D. | QBASIC.xIs | 
| Answer» B. QBASIC.doc | |
| 68. | 
                                    What will the given command do? LET C = A + B | 
                            
| A. | The string variable C receives the value of A + B. | 
| B. | The numerical variable C is assigned the value of A+ B. | 
| C. | The string variable C is assigned the expression A + B. | 
| D. | An error message is displayed. | 
| Answer» C. The string variable C is assigned the expression A + B. | |
| 69. | 
                                    Which command is used to clear the screen of QBASIC window? | 
                            
| A. | REM | 
| B. | NQT | 
| C. | CLR | 
| D. | CLS | 
| Answer» E. | |
| 70. | 
                                    In QBASIC language, what are the quantities which change values during the execution of a program? | 
                            
| A. | Variables | 
| B. | Constants | 
| C. | Errors | 
| D. | Operators | 
| Answer» B. Constants | |
| 71. | 
                                    Which of the following is an INVALID representation of constants in QBASIC language? | 
                            
| A. | ?Hello? | 
| B. | ?16/10/2005? | 
| C. | 0.742 | 
| D. | ?Q ?BASIC?? | 
| Answer» E. | |
| 72. | 
                                    What is the full form of BASIC? | 
                            
| A. | Beginners All-purpose Symbolic Instruction Code | 
| B. | Basic All program Symbol Integrated Computer | 
| C. | Basic all proper Symbolic Insert Code | 
| D. | Basic all print Syntax Instruction Code | 
| Answer» B. Basic All program Symbol Integrated Computer | |
| 73. | 
                                    What is the group of instructions directing a computer called? | 
                            
| A. | Storage | 
| B. | Memory | 
| C. | Logic | 
| D. | Program | 
| Answer» E. | |
| 74. | 
                                    What will be the output of the following QBASIC code?\[\begin{array}{*{35}{l}} x\text{ }=\text{ }8 \\ IF\text{ (}x\text{ }=\text{ }5\text{) }THEN \\ ~~~~~PRINT\text{ }''You\text{ }selected\text{ }5'' \\ ELSEIF\text{ (}x\text{ }=\text{ 6) }THEN \\ ~~~~~PRINT\text{ }''You\text{ }selected\text{ }6'' \\ ELSEIF\text{ (}x\text{ }=\text{ 7) }THEN \\ ~~~~~PRINT\text{ }''You\text{ }selected\text{ }7'' \\ ELSE \\ ~~~~~PRINT\text{ }''You\text{ }made\text{ }an\text{ }invalid\text{ }choice'' \\ END\text{ }IF \\ \end{array}\] | 
                            
| A. | You selected 5 | 
| B. | You selected 6 | 
| C. | You selected 7 | 
| D. | You made an invalid choice | 
| Answer» E. | |
| 75. | 
                                    What is the CORRECT code to set the whole background to red and foreground color to yellow? | 
                            
| A. | COLOR 6, 14 PRINT "This text is yellow over red" | 
| B. | COLOR 14, 4 CLS PRINT "This text is yellow over red" | 
| C. | COLOR 4, 14 PRINT "This text is yellow over red" | 
| D. | COLOR 0.1, 14 CLS PRINT "This text is yellow over red" | 
| Answer» C. COLOR 4, 14 PRINT "This text is yellow over red" | |
| 76. | 
                                    What will be the output of the given QBASIC codes?Code ACode BFOR I = 1 TO 5 STEP 2FOR I =1 TO 5 STEP 1PRINT IPRINT INEXT II=I+1 NEXT I | 
                            
| A. | Both will print135 | 
| B. | Code ACode B113253 4 5 | 
| C. | Code ACode B113254 | 
| D. | Code ACode B1123354 5 | 
| Answer» B. Code ACode B113253 4 5 | |
| 77. | 
                                    In this mode, a QBASIC statement is executed as soon as you press the key. It is the ___________. | 
                            
| A. | Program Mode | 
| B. | Status Mode | 
| C. | Intermediate Mode | 
| D. | Immediate Mode | 
| Answer» E. | |
| 78. | 
                                    Write the following expression in QBASIC.\[Y=X+\frac{{{R}^{2}}}{C.B}+S.R-B\] | 
                            
| A. | \[Y=X+{{R}^{\wedge }}2/(C*B)+S*R-B\] | 
| B. | \[Y=X+{{R}^{2}}/(C*B)+S*R-B\] | 
| C. | \[Y=X+{{R}^{2}}/C*B+S*R-B\] | 
| D. | \[Y=X+R*2/C*B+S*R-B\] | 
| Answer» B. \[Y=X+{{R}^{2}}/(C*B)+S*R-B\] | |
| 79. | 
                                    Read the following program and identify the line number with an error. | 
                            
| A. | Line 1 | 
| B. | Line 2 | 
| C. | Line 3 | 
| D. | Line 4 | 
| Answer» D. Line 4 | |
| 80. | 
                                    Which of the given line of codes will cause the computer to produce the following result? 'If the value of a string variable is YES, then transfer the control to the line labelled ONE' | 
                            
| A. | IF A - "YES" THEN GOSUB ONE | 
| B. | IF A\[\$\]= "YES" THEN GOSUB ONE | 
| C. | GOSUB ONE IF A\[\$\] = "YES" | 
| D. | IF A = "YES" TRANSFER ONE | 
| Answer» C. GOSUB ONE IF A\[\$\] = "YES" | |
| 81. | 
                                    What would happen with the given lines of code?\[\begin{array}{*{35}{l}} ~~~~~~~~~CLS \\ ~~~~~~~~~COLOR\text{ }14,\text{ }2 \\ \end{array}\] | 
                            
| A. | Foreground color is set to yellow and background color is set to green. | 
| B. | Foreground color is set to green and background color is set to yellow. | 
| C. | Foreground color is set to green and background color is set to default. | 
| D. | Foreground color is set to blue and background color is set to green. | 
| Answer» B. Foreground color is set to green and background color is set to yellow. | |
| 82. | 
                                    A GOTO statement __________. | 
                            
| A. | Instructs the computer to goto a specific statement associated with a label | 
| B. | Can be used to skip some statements | 
| C. | Can be used to repeat some statements | 
| D. | All of these | 
| Answer» E. | |
| 83. | 
                                    Which of the following commands is used to display the graphics on the screen? | 
                            
| A. | CANVAS | 
| B. | RESOLUTION | 
| C. | LOCATE | 
| D. | SCREEN | 
| Answer» E. | |
| 84. | 
                                    What is the output of the following QBASIC code?\[\begin{array}{*{35}{l}} NAME\${{=}^{\prime\prime}}ProjectScop{e}''\\PRINT\,\,LEN\left(NAME\$\right)\\\end{array}\]. | 
                            
| A. | 10 | 
| B. | 11 | 
| C. | 12 | 
| D. | 13 | 
| Answer» E. | |
| 85. | 
                                    Match the QBASIC operator names given in Column-I with their corresponding operators given in Column-II.Column-IColumn-II(a) Logical Operators(i) +, -, *, /, ^(b) Relation Operators(ii) AND, OR, NOT(c) Arithmetic Operators(iii) =, , >, | 
                            
| A. | (a) - (i), (b) - (ii), (c) - (iii) | 
| B. | (a) - (ii), (b) - (i), (c) - (iii) | 
| C. | (a) - (ii), (b) - (iii), (c) - (i) | 
| D. | (a) - (iii), (b) - (i), (c) - (ii) | 
| Answer» D. (a) - (iii), (b) - (i), (c) - (ii) | |
| 86. | 
                                    Which of the following is NOT a valid step value for a loop? | 
                            
| A. | 2 | 
| B. | -2 | 
| C. | 0.03 | 
| D. | None of these | 
| Answer» E. | |
| 87. | 
                                    What will be the output of the following program?\[\begin{array}{*{35}{l}} age\text{ }=\text{ }10 \\ DO \\ PRINT\text{ }age \\ age\text{ }=\text{ }age\text{ }+\text{ }1 \\ LOOP\text{ }WHILE\text{ }age\text{ } | 
                            
| A. | 9 | 
| B. | 11 | 
| C. | 10 | 
| D. | 12 | 
| Answer» D. 12 | |
| 88. | 
                                    Which is a circuit board equipped with microchips? | 
                            
| A. | Workstation | 
| B. | NIC | 
| C. | Switch | 
| D. | Router | 
| E. | None of these | 
| Answer» C. Switch | |
| 89. | 
                                    Which one of the following statements is true about Client-server model? | 
                            
| A. | Client is a computer application that runs on a server computer. | 
| B. | Client is a computer application that runs on a remote computer. | 
| C. | Server is a computer application that runs on a remote computer. | 
| D. | All of these | 
| E. | None of these | 
| Answer» D. All of these | |
| 90. | 
                                    Which one of the following OS is used by network administrator to perform admin task, such as giving different privileges to different users? | 
                            
| A. | Windows Server 2008 | 
| B. | Windows Vista | 
| C. | Windows 7 | 
| D. | Windows XP | 
| E. | None of these | 
| Answer» B. Windows Vista | |
| 91. | 
                                    Using Internet you can search any information. Which one of the following is an example, of search engine? | 
                            
| A. | Gmail | 
| B. | Rediff | 
| C. | Edge | 
| D. | India times | 
| E. | None of these | 
| Answer» E. None of these | |
| 92. | 
                                    Which of the following statements hold(s) true with respect to Mail Merge feature? Statement 1: You can add an address to your letter using Address Block. Statement 2: You cannot add greeting line to your document. | 
                            
| A. | Only Statement 1 | 
| B. | Only Statement 2 | 
| C. | Both Statement 1 and Statement 2 | 
| D. | Neither Statement 1 nor Statement 2 | 
| Answer» B. Only Statement 2 | |
| 93. | 
                                    Macros can be assigned to ___________. | 
                            
| A. | Command buttons | 
| B. | Keyboard shortcuts | 
| C. | Ribbon tabs | 
| D. | Both [A] and [B] | 
| Answer» E. | |
| 94. | 
                                    The given icon can be used to __________ in a mail-merged document. | 
                            
| A. | View the merged data | 
| B. | Make changes to the list of recipients | 
| C. | Highlight the field in letter | 
| D. | Add a greeting line in letter | 
| Answer» C. Highlight the field in letter | |
| 95. | 
                                    A_____ is a series of Word commands that you group together as a single operation to accomplish a task with a single click. | 
                            
| A. | Macro | 
| B. | Automation | 
| C. | Execution | 
| D. | Statements | 
| Answer» B. Automation | |
| 96. | 
                                    Identify the following: - They are used to identify positions in a document. - These positions can be the beginning of a chapter or a table. - They can be used to jump to specific points in a document. | 
                            
| A. | Bookmarks | 
| B. | Hyphenation | 
| C. | Watermarks | 
| D. | Save points | 
| Answer» B. Hyphenation | |
| 97. | 
                                    You have assigned bookmarks to some text and items in a document, now you want to see how many bookmarks have been added to the document. Which of the following is/are the CORRECT way to do so. (i) Click on (ii) Click on (iii) Press key. | 
                            
| A. | Only (i) | 
| B. | Only (ii) | 
| C. | Both (ii) and (iii) | 
| D. | All (i), (ii) and (iii) | 
| Answer» B. Only (ii) | |
| 98. | 
                                    Identify the tool: - It is used for referencing information that appears in another location in a document. - This information can be headings, figures and tables in various parts of your document. - It gets automatically updated if the content is moved to another location. | 
                            
| A. | Cross-reference | 
| B. | Hyperlink | 
| C. | Direct reference | 
| D. | Indirect reference | 
| Answer» B. Hyperlink | |
| 99. | 
                                    For mail merge, ______ consists of the list of names and addresses to be printed on labels and envelopes. | 
                            
| A. | Data Source | 
| B. | Main document | 
| C. | New document | 
| D. | Website | 
| Answer» B. Main document | |
| 100. | 
                                    Mail Merge feature of MS-Word does not allow you to ______. | 
                            
| A. | Select recipients from your phone book | 
| B. | Specify how to handle errors when completing the mail merge | 
| C. | Replace the merge fields with actual data from recipient list | 
| D. | Send mail-merged documents via e-mail | 
| Answer» B. Specify how to handle errors when completing the mail merge | |