Class 11 English Snapshots Chapter 6 MCQ the Tale of Melon City by Vikram Seth for CBSE session 2025-26. Get extra important practice questions of Class 11 English Supplementary Reader Chapter 6 Multiple Choice Questions for the preparation of exams.

Why did the architect hold King responsible for arch’s fallout?
[A] Because he was sitting on the highest position
[B] Because he made last minute changes in design
[C] Because King made mistake while construction of palace
[D] None of the above
Answer:
[B] Because he made last minute changes in design

Class 11 English Snapshots Chapter 6 MCQ with Answers

Q1

The King was popular for

[A]. Wisdom
[B]. Creativity
[C]. Justice
[D]. Cruelty
Q2

What did the King demand to be built?

[A]. Empire
[B]. Arch
[C]. Painting
[D]. Village
Q3

What was found to be lacking in the construction of the arch?

[A]. Design was wrong
[B]. Material used was of inferior quality
[C]. Arch’s height was too short
[D]. None of the above

Who did the chief of builders blame?
[A] The King
[B] The Masons
[C] The Workmen
[D] The Public
Answer:
[C] The Workmen

Why were the people happy with their ‘New King’?
[A] Because he too was just and placid
[B] Because he was kind
[C] Because he was intelligent
[D] Because he didn’t interfere in their life
Answer:
[D] Because he didn’t interfere in their life

Class 11 English Snapshots Chapter 6 Multiple Choice Questions

Q4

Do you think that the King took his ‘notion of justice’ too far?

[A]. He set an example of justice
[B]. He was caught in a trap
[C]. He couldn’t decide
[D]. Yes, he lost his life
Q5

What sort of principles seem to flourish in the state?

[A]. Laissez Faire
[B]. Democratic
[C]. Communistic
[D]. Republic
Q6

Who was chosen as the ‘New King’?

[A]. An Orange
[B]. A Painting
[C]. A Melon
[D]. A Puppet

Who chose the ‘Next King’?
[A] Ministers
[B] King’s wife
[C] One who passes the city gate
[D] King’s successor
Answer:
[C] One who passes the city gate

What was the method adopted for hanging?
[A] One that fits perfectly in noose
[B] One with maximum criminal records
[C] One with maximum treasure
[D] Who has the highest height
Answer:
[A] One that fits perfectly in noose

Last Edited: September 5, 2023
`; const sendBtn = root.querySelector('#chatbottiwari-send'); const micBtn = root.querySelector('#chatbottiwari-mic'); const input = root.querySelector('input'); const adsDiv = root.querySelector('.chatbottiwari-ads'); if (adsDiv) { setTimeout(() => { if (!adsDiv.innerHTML.trim() || adsDiv.offsetHeight < 20) { adsDiv.style.display = 'none'; } else { adsDiv.style.display = 'block'; } }, 500); } sendBtn.addEventListener('click', function(){ const val = input.value.trim(); if(val){ send(val); input.value=''; } }); input.addEventListener('keydown', function(e){ if(e.key === 'Enter'){ e.preventDefault(); const val = input.value.trim(); if(val){ send(val); input.value=''; } } }); // 🎤 Voice input feature if ('webkitSpeechRecognition' in window || 'SpeechRecognition' in window) { const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; const recognition = new SpeechRecognition(); recognition.lang = 'en-IN'; recognition.interimResults = false; recognition.maxAlternatives = 1; micBtn.addEventListener('click', function(){ try { micBtn.style.color = '#FA4703'; micBtn.textContent = '🎙️'; recognition.start(); } catch (err) { console.error(err); } }); recognition.addEventListener('result', function(e){ const transcript = e.results[0][0].transcript; input.value = transcript; send(transcript); }); recognition.addEventListener('end', function(){ micBtn.style.color = ''; micBtn.textContent = '🎤'; }); } else { micBtn.style.opacity = '0.3'; micBtn.title = 'Voice input not supported in this browser'; micBtn.disabled = true; } } } function appendMessage(role,text){ const container = root.querySelector('.chatbottiwari-messages'); const div = document.createElement('div'); div.className = 'chatbottiwari-msg '+(role==='user'?'user':'bot'); const bubble = document.createElement('div'); bubble.className = 'bubble'; bubble.innerHTML = text.replace(/\n/g,'
'); bubble.style.background = role==='user'?'#FA4703':'#e9e9ea'; bubble.style.color = role==='user'?'#fff':'#222'; bubble.style.padding='8px 12px'; bubble.style.borderRadius='12px'; bubble.style.display='inline-block'; bubble.style.maxWidth='80%'; div.style.marginBottom='10px'; div.style.textAlign = role==='user'?'right':'left'; div.appendChild(bubble); container.appendChild(div); container.scrollTop = container.scrollHeight; } function send(q) { if(!window.ChatbotTiwariConfig || !window.ChatbotTiwariConfig.endpoint){ appendMessage('bot','API endpoint not configured.'); return; } appendMessage('user', q); // 🟡 Show loading placeholder const loadingMsg = document.createElement('div'); loadingMsg.className = 'chatbottiwari-msg bot'; const loadingBubble = document.createElement('div'); loadingBubble.className = 'bubble'; loadingBubble.style.background = '#e9e9ea'; loadingBubble.style.color = '#555'; loadingBubble.style.padding = '8px 12px'; loadingBubble.style.borderRadius = '12px'; loadingBubble.style.display = 'inline-block'; loadingBubble.style.maxWidth = '80%'; loadingBubble.innerHTML = ` TIA is answering. `; let dotCount = 1; const dots = loadingBubble.querySelector('.tia-dots'); const dotAnim = setInterval(()=>{ dotCount = (dotCount % 5) + 1; dots.textContent = '.'.repeat(dotCount); }, 400); loadingMsg.appendChild(loadingBubble); root.querySelector('.chatbottiwari-messages').appendChild(loadingMsg); root.querySelector('.chatbottiwari-messages').scrollTop = root.querySelector('.chatbottiwari-messages').scrollHeight; const sessionId = window.ChatbotTiwariConfig.session_prefix + '-' + Math.random().toString(36).substr(2,7); fetch(window.ChatbotTiwariConfig.endpoint, { method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify({session_id:sessionId, query:q}) }) .then(res => res.json()) .then(data => { // parse if wrapped in body if(data.body && typeof data.body === 'string'){ data = JSON.parse(data.body); } // 🧹 Remove loading message loadingMsg.remove(); if (data.response) { // Convert URLs + bold + line breaks const formatted = data.response .replace(/\n/g, '
') .replace(/(\bhttps?:\/\/[^\s<>]+)/gi, '$1') .replace(/\*\*(.*?)\*\*/g, '$1'); appendMessage('bot', formatted); } else { appendMessage('bot', 'Sorry, I didn’t get any response.'); } }) .catch(err => { loadingMsg.remove(); appendMessage('bot','Error contacting backend: '+err.message); }); } toggle.addEventListener('click', function() { if (root.style.display === 'none') { createWidget(); root.style.display = 'block'; toggle.style.display = 'none'; // hide button when chat opens } }); root.addEventListener('click', function(e) { if (e.target.classList.contains('chatbottiwari-close')) { root.style.display = 'none'; toggle.style.display = 'block'; // show button again when chat closes } }); // Handle input send root.addEventListener('keydown',function(e){ if(e.target.tagName==='INPUT' && e.key==='Enter'){ e.preventDefault(); const val = e.target.value.trim(); if(val){ send(val); e.target.value=''; } } }); root.querySelector('button')?.addEventListener('click',function(){ const input = root.querySelector('input'); const val = input.value.trim(); if(val){ send(val); input.value=''; } }); })();