Company: Deloitte..mcq
Difficulty: medium
In Microsoft Word, which ribbon tab holds the 'Find and Replace' command for locating specific text? Home Tab Insert Tab Review Tab View Tab In HTML5, which tag best expresses a logical, thematic grouping of content within a document? <div> <section> <span> <header> Which option below guards a system against spyware and comparable threats? Antivirus Anti-spyware Firewall Disk Cleanup Fill in the blank tag below so the markup produces a dropdown with grouped options as pictured. Which tag belongs in place of the underscores? <select id="workshop" name="workshop"> <____ label="Technology"> <option value="webdev">Web Development</option> </____> </select> <group> <optgroup> <optionset> <category> Trace through this C++ snippet and work out what it prints when Q(-2) runs. void Q(int x) { try { if (x > 0) { throw x; } else { throw x + 5; } } catch (int x) { cout << "A " << x; } } int main() {