MCQ Bank
Which of the followings is the security purpose served by content filtering?
- A) Blocking unrelated websites.
- B) Enhancing website accessibility.
- C) Promoting free content distribution.
- D) Speeding up internet connections.
What is the primary purpose of content filtering in Firewall?
- A) Enhancing access to all content
- B) Allowing access to harmful items
- C) Preventing access to harmful items
- D) Maintain anonymity of local machine
In MS Word, we can customize indentation with ___________
- A) Ruler
- B) Format Painter
- C) Clipboard
- D) Justify
Which negative behavior has been facilitated by the anonymity offered by online platforms?
- A) Identity theft
- B) Gaming addiction
- C) Cyber bullying
- D) Plagiarism
In Microsoft Word, what is the purpose of bulleting and numbering?
- A) Creating tables.
- B) Adding images to documents.
- C) Organizing lists of data.
- D) Formatting paragraphs.
In Microsoft word, which command is used to quickly reverse most actions you execute?
- A) Quick Print
- B) Save
- C) Undo
- D) Redo
What risk involves potential exposure to inappropriate or unsuitable products?
- A) Content Risks
- B) Contact Risks
- C) Online Marketing
- D) Information Security
How does the termination condition relate to the while statement in pseudocode?
- A) It is the condition for modifying the loop
- B) It is the negation of the condition appearing in the while structure
- C) It is the condition for executing the loop body
- D) It is the condition for initializing the loop
Sequential Search Algorithm is a technique in which we may scan list from its___________, comparing each entry with the target name.
- A) Beginning
- B) End
- C) Middle
- D) Level
What will be the output of the following statement?
int a = 3.5 + 4.4;
- A) 7
- B) 7.9
- C) 8
- D) 8.0
What is the alternative term for the "while loop structure" in the context of iterative structures?
- A) Loop test
- B) Pretest
- C) Posttest
- D) Iteration check
What is the significance of the termination condition in the context of loop control?
- A) It prevents the loop from executing the body
- B) It ensures the termination of the looping process
- C) It has no impact on loop control
- D) It ensures the loop body is executed indefinitely
What will be the output of the loop for the given example? int i=1; while(i<7) { cout<<i; i=i+2; }
- A) 1357
- B) 135
- C) 1234567
- D) 7654321
What does the imperative paradigm define in the programming process?
- A) Development of a sequence of commands
- B) Programming paradigms
- C) Linear scale position
- D) Declarative programming approach
What are the three activities involved in the control of a loop structure?
- A) Start, Stop, Proceed
- B) Launch, Halt, Adjust
- C) Initialize, Test, Modify
- D) Begin, End, Continue
For Sequential Search Algorithm technique, it is _____________ to be list as sorted in alphabetic order in case of names list.
- A) Optional
- B) Mandatory
- C) Sometimes mandatory
- D) Not Mandatory
The set of instructions in a computer language, to get the desired result is known as:
- A) A decision table
- B) An algorithm
- C) A pseudo code
- D) A program
Float CGPA=2.5;
If (CGPA>=3.0)
Cout<<”Give Scholarship”;
Else
Cout<<”Sorry you do not qualify for the scholarship”;
It will show output
- A) Display none
- B) Give Scholarship
- C) Good
- D) Sorry you do not qualify for the scholarship
A program that is believed to be correct and a program that is correct. The two are
- A) Not necessarily same
- B) Totally same
- C) Same
- D) Not same
What will be the value of "f" after the first iteration of the while loop in the given pseudo-code? f = 1 i=1; While (i<=n): f=f*i; i=i+1;
- A) 1
- B) 2
- C) Cannot be determined
- D) n