HTML Basics
टैग गुणों को संशोधित करने के लिए HTML टैग में उपयोग किए जाने वाले परिभाषित शब्द। इनका उपयोग किसी तत्व में रंग जोड़ने या बदलने या आकार बदलने के लिए किया जा सकता है। वे " " में संलग्न हैं।
Defined words used in an HTML tag to modify the tag properties. They can be used to add or change color or change a size in some element. They are enclosed in " ".
………………. दशमलव बिंदु के बाद अंकों की एक निर्दिष्ट संख्या के साथ एक संख्या को एक स्ट्रिंग में परिवर्तित करता है।
………………. converts a number to a string with a specified number of digits after the decimal point.
ParseInt() और parseFloat() का उपयोग करते समय, यदि पहला नॉनस्पेस वर्ण वैध संख्यात्मक शाब्दिक का हिस्सा नहीं है, तो वे ………… वापस आते हैं।
While using parseInt( ) and parseFloat( ), if the first nonspace character is not a part of a valid numeric literal, they return ………….
प्रोग्राम का आउटपुट दीजिए
Give the output of the program
<html>
<body>
<script>
var number=50;//global variable
function a(){
alert(number);
}
function b(){
alert(number);
}
a();
</script>
</body>
</html> निम्नलिखित में से किसे त्रुटि नहीं माना जाता है:
Which one of the following is not considered as an error :
__________ एक सामान्य इनलाइन तत्व है जो कोई आत्मसमर्पित स्वरूप पर लागू नहीं करता है।
_________ is a generic inline element that applies no inherent formatting.
वर्तमान HTML दस्तावेज़ में बाहरी JavaScript फ़ाइल को कॉल करने के लिए सही सिंटैक्स कौन सा है?
Which is the correct syntax to call an external JavaScript file in the current HTML document ?
टेबल में टेक्स्ट को अलाइन करने के लिए निम्न में से किस प्रॉपर्टी का उपयोग किया जाता है?
Which of the following property is used to align the text in a table?
यदि हम निम्नलिखित दो वेरिएबल जोड़ते हैं तो किस प्रकार का मान मुद्रित होता है?
What type of value gets printed if we add the following two variables ?
var a = "10";
var b = 50; दो तारों को जोड़ने के लिए किस विधि का उपयोग किया जाएगा?
Which method is will be used to join two strings ?
HTML कितने विभिन्न शीर्षक तत्वों का समर्थन करता है?
How many different heading elements are supported by HTML ?
………… घटना तब होती है जब उपयोगकर्ता HTML तत्व पर क्लिक करता है।
The ………… event occurs when the user clicks on an HTML element.
टेक्स्ट को इटैलिक फॉर्मेट बनाने के लिए किस टैग का उपयोग किया जाता है?
Which tag is used to make a text italic format ?
निम्नलिखित में से कौन सा पथ HTML द्वारा समर्थित है?
Which of the following path is supported by HTML?
निम्नलिखित में से कौन सा HTML टैग विशेष फ़ॉर्मेटिंग टैग है?
Which of the following HTML tag is the special formatting tag?
__________ प्रॉपर्टी से एक तत्व में पाठ की पहली पंक्ति को इंडेंट करने की अनुमति है।
The __________ property allows to indent the first line of text in an element.
XHTML एक HTML संयोजन है...
XHTML is a HTML Combination with .....
HTML में एक नए पेज में खुलने वाले लिंक को कैसे परिभाषित करें?
How to define a link that should open in a new page in HTML?
HTML में ऑर्डर लिस्ट देने के लिए किस टैग का उपयोग किया जाता है?
Which tag is used to give order list in HTML ?
टैग में ऑल्ट वैल्यू का क्या उपयोग है?
What is the usage of alt value in <img> tag?
निम्नलिखित में से किस HTML विशेषता का उपयोग इनलाइन शैलियों को परिभाषित करने के लिए किया जाता है?
Which of the following HTML attribute is used to define inline styles?
HTML फॉर्म में चेकबॉक्स कैसे बनाएं?
How to create a checkbox in HTML Form?
HTML को पहली बार वर्ष ___ में प्रस्तावित किया गया था।
HTML was first proposed in year ___.
कौन सा निर्देश HTML तत्व को दोहराता है?
Which directive repeats an HTML element?
निम्नलिखित में से कौन सा सेट करना सही है काला = पृष्ठ की पृष्ठभूमि के रूप में रंग?
Which of the following is correct to set Black= color as Background of page?