101. FTP stands for_____
- a) File Total Protocol.
- b) Forward Total Protocol.
- c) File Transfer Protocol.
- d) File Transfer Project
Answer: C - FTP is the standard protocol for transferring files between computers.
102. There are _____ types of modules in visual basic
- a) Three
- b) Two
- c) Five
- d) None of these
Answer: A - VB has three module types: Form, Standard, and Class modules.
103. A value that is automatically entered in a field for a new record_____
- a) Validation rule
- b) Default value
- c) Input mask
- d) None of above
Answer: B - Default values auto-populate fields when creating new records.
104. Diagram that represents steps or operations involved in any kind of process is called_____
- a) System diagram
- b) Management hierarchy
- c) Flowcharts
- d) Convenience diagrams
Answer: C - Flowcharts visually represent process steps using standardized symbols.
105. In flowchart, symbol of rectangle with one curvy side is used to show_____
- a) Document printed
- b) Document written
- c) Data stored
- d) Display output
Answer: A - The curved-edge rectangle represents printed documents in flowcharts.
106. In a flowchart an input or output instruction is represented by_____
- a) A rectangle
- b) A rhombus
- c) A parallelogram
- d) A circle
Answer: C - Parallelograms denote input/output operations in standard flowcharts.
107. Binary search algorithm cannot be applied to_____
- a) Sorted linked list.
- b) Sorted binary trees.
- c) Sorted linear array.
- d) Pointer array.
Answer: A - Binary search requires random access, which linked lists don't support efficiently.
108. Connectors used to connect flowchart symbols to each other are classified as_____
- a) Arrow lines.
- b) Symbols.
- c) Annotation.
- d) Special symbols.
Answer: B - Flowchart connectors are considered part of the symbol system.
109. An algorithm that calls itself directly or indirectly is known as_____
- a) Sub algorithm.
- b) Recursion.
- c) Polish notation.
- d) Traversal algorithm.
Answer: B - Recursive algorithms solve problems by self-referential calls.
110. The advantage of For-Next loops over Do-Loops is that they are: _____
- a) easier to read and maintain.
- b) less prone to being infinite loops.
- c) good for working with arrays.
- d) All of the above.
Answer: D - For-Next loops provide structured iteration with built-in counters.
111. What does the .com domain represent?
- a) education domain
- b) commercial domain
- c) network
- d) Browser
Answer: B - .com is the top-level domain for commercial entities.
112. The browser's _______ keeps a list of web pages you have visited during the current session.
- a) history
- b) cache
- c) favorites
- d) trail
Answer: A - Browser history tracks visited pages chronologically.
113. The complexity of Binary search algorithm is_____
- a) O(n)
- b) O(log n)
- c) O(n²)
- d) O(n log n)
Answer: B - Binary search halves the search space with each comparison.
114. The complexity of Bubble sort algorithm is_____
- a) O(n)
- b) O(log n)
- c) O(n²)
- d) O(n log n)
Answer: C - Bubble sort requires quadratic time due to nested iterations.
115. E-Mail where 'E' stands for_____
- a) Electrical
- b) Electronic
- c) Election
- d) Easy
Answer: B - Email stands for Electronic Mail.
116. Outlined program flowchart' shows the_____
- a) detailed operations
- b) general flowcharts
- c) classified flowchart
- d) detailed program
Answer: B - Outlined flowcharts provide high-level process overviews.
117. Part of an algorithm which is repeated for fixed number of times is classified as_____
- a) iteration
- b) selection
- c) sequence
- d) reverse action
Answer: A - Iteration involves repetitive execution of code blocks.
118. Repetition of statement in Jackson method is shown by_____
- a) drawing sign of equal
- b) drawing sign of subtraction
- c) drawing an asterisk
- d) drawing an arrow
Answer: C - Jackson structured programming uses asterisks to denote repetition.
119. Google Chrome is a_____
- a) word Processor
- b) DBMS
- c) Browser
- d) None
Answer: C - Chrome is a popular web browser developed by Google.
120. MULTILINE=TRUE Property is used_____
- a) Label
- b) Inputbox
- c) TextBox
- d) Frame
Answer: C - Enables multi-line text input in TextBox controls.