COPA - 1st Semester - Module - 12: Designing Static WebPages

Question 1What is the first tag in html document? | HTML डॉक्यूमेंट में पहला टैग क्या है?
Question 2The <b> tag makes the enclosed text bold, which other html tag is used to make text bold? | <b> टैग संलग्न टेक्स्ट को बोल्ड बनाता है, टेक्स्ट को बोल्ड बनाने के लिए किस अन्य HTML टैग का उपयोग किया जाता है?
Question 3Which html tag is used to display a picture in a web page? | वेब पेज में चित्र प्रदर्शित करने के लिए किस HTML टैग का उपयोग किया जाता है?
Question 4What is the full form of HTTP? | HTTP का पूर्ण रूप क्या है?
Question 5Which html tag inserts a line horizontally in a page? | किस HTML टैग में एक पृष्ठ पर क्षैतिज रेखा डाली जाती है?
Question 6What is the full form of CSS? | CSS का पूर्ण रूप क्या है?
Question 7Which html tag is the smallest heading? | सबसे छोटा शीर्षक कौन सा HTML टैग है?
Question 8What is the another name of web address? | वेब पते का दूसरा नाम क्या है?
Question 9What are the two main parts, available in html document? | HTML डॉक्यूमेंट में उपलब्ध दो मुख्य भाग क्या हैं?
Question 10Which character in html is used to indicate end tag? | HTML में कौन सा पात्र अंत टैग इंगित करने के लिए उपयोग किया जाता है?
Question 11Which symbols starts with html comments? | HTML टिप्पणियों से कौन से प्रतीक शुरू होते है?
Question 12Which is used to publish the webpage to a web hosting server? | वेब होस्टिंग सर्वर को वेबपेज प्रकाशित करने के लिए किसका उपयोग किया जाता है?
Question 13Which attribute is used with <td> tag to merge two cells horizontally? | क्षैतिज रूप से दो सेल को मिलाने के लिए <td> टैग के साथ किस विशेषता का उपयोग किया जाता है?
Question 14Which tag creates a checkbox for a form in html? | HTML में फॉर्म के लिए कौन सा टैग एक चेकबॉक्स बनाता है?
Question 15Which html tag is used to add a row in a table? | टेबल में पंक्ति जोड़ने के लिए किस HTML टैग का उपयोग किया जाता है?
Question 16Which html tag is used to divide a row into data cells? | कौन सी HTML टैग का उपयोग डेटा सेल में एक पंक्ति को विभाजित करने के लिए किया जाता है?
Question 17Which is the correct syntax for adding alternate text for image, if the image cannot be displayed? | यदि छवि प्रदर्शित नहीं की जा सकती है, तो छवि के लिए वैकल्पिक टेक्स्ट जोड़ने के लिए कौन सा वाक्यविन्यास सही है?
Question 18Which is the correct H1 tag for right alignment? | सही संरेखण के लिए सही H1 टैग कौन सा है?
Question 19What is the use of forms in HTML? | HTML में रूपों का उपयोग क्या है?
Question 20What is the correct syntax for making a hyperlink? | हाइपरलिंक बनाने के लिए सही सिंटैक्स क्या है?
Question 21Which is the correct tag for adding iframe in html? | HTML में iframe जोड़ने के लिए सही टैग कौन सा है?
Question 22What is the correct html tag for adding a background color? | पृष्ठभूमि रंग जोड़ने के लिए सही HTML टैग क्या है?
Question 23How do you add a link which will allow the visitor to send an email from the page? | आप एक लिंक कैसे जोड़ते हैं जो आगंतुक को पेज से एक ईमेल भेजने की अनुमति देगा?
Question 24What will happen, if the background image is smaller than the screen? | बैकग्राउंड इमेज से स्क्रीन छोटा है तो क्या हो जायेगा?
Question 25Which is the correct CSS syntax? | सही CSS सिंटैक्स कौन सा है?
Question 26Which is the correct html tag for making a text input field? | टेक्स्ट इनपुट फ़ील्ड बनाने के लिए कौन सा सही HTML टैग है?
Question 27Which is the correct html tag for creating password field? | पासवर्ड फ़ील्ड बनाने के लिए सही HTML टैग कौन सा है?
Question 28What is the correct html code for inserting a background image? | बैकग्राउंड इमेज डालने के लिए सही HTML कोड क्या है?
Question 29Which option will match, while making bulleted list? | बुलेटेड सूची बनाते समय कौन सा विकल्प मेल खाएगा?
Question 30What is the meaning of increase the cell padding? | सेल पैडिंग बढ़ाने का अर्थ क्या है?
Question 31Which web language give more control over the HTML elements and allows them to change at any time without returning to the Web server? | कौन सी वेब भाषा HTML तत्वों पर अधिक नियंत्रण देती है और वेब सर्वर पर वापस आए बिना उन्हें किसी भी समय बदलने की अनुमति देती है?
Question 32What will be the output of the following HTML code? | निम्नलिखित HTML कोड का आउटपुट क्या होगा?
<html>
<body>
<p><strong>NIMI</strong></p>
<p>CHENNAI</p>
</body>
</html>
Question 33What is the output of the following html? | निम्न HTML का आउटपुट क्या है?
<html>
<body>
<h2>NIMI<small>CHENNAI</small> formatting</h2>
</body>
</html>
Question 34What is the output of the following html code? | निम्न HTML कोड का आउटपुट क्या है?
<html>
<body>
<p>NIMI<sup>CHENNAI</sup></p>
</body>
</html>
Question 35How will the following html code appear in the browser? | ब्राउज़र में निम्न HTML कोड कैसे दिखाई देगा?
<html>
<body>
<h1>my first heading</h1>
<p>my first paragraph</p>
</body>
</html>
Question 36Which of the following code is used to add a plain color background to the web page? | वेब पेज पर सादे रंग की पृष्ठभूमि को जोड़ने के लिए निम्न में से किस कोड का उपयोग किया जाता है?