Company: Deloitte..mcq
Difficulty: medium
Where can you access the 'Find and Replace' feature to search for specific text in Microsoft Word? Home Tab Insert Tab Review Tab View Tab Which one of the given options is the most appropriate tag in HTML5 to divide the document into logical document sections? <div> <section> <span> <header> Which one of the given options is used to protect the system from Spyware and other similar programs? Antivirus Anti-spyware Firewall Disk Cleanup Complete the HTML code snippet below to create a dropdown menu with grouped options as shown in the image. Which tag correctly fills the blanks? <select id="workshop" name="workshop"> <____ label="Technology"> <option value="webdev">Web Development</option> </____> </select> <group> <optgroup> <optionset> <category> Analyze the given C++ code snippet and determine the output when Q(-2) is executed. void Q(int x) { try { if (x > 0) { throw x; } else { throw x + 5; } }