Java Script - Dom Manipulation
Questions No: 1/20

Which of the following methods is used to remove a child element from the DOM?
DOM से चाइल्ड तत्व को हटाने के लिए निम्नलिखित में से किस विधि का उपयोग किया जाता है?

Questions No: 2/20

Which method is used to find an HTML element by its ID?
किसी HTML तत्व को उसकी आईडी द्वारा खोजने के लिए किस विधि का उपयोग किया जाता है?

Questions No: 3/20

Which of the following methods is used to insert a new element before an existing element in the DOM?
DOM में मौजूदा तत्व से पहले एक नया तत्व डालने के लिए निम्नलिखित में से किस विधि का उपयोग किया जाता है?

Questions No: 4/20

Which property is used to set or get the HTML content inside an element?
किसी तत्व के अंदर HTML सामग्री को सेट करने या प्राप्त करने के लिए किस प्रॉपर्टी का उपयोग किया जाता है?

Questions No: 5/20

Which method would you use to add an event listener to an element?
किसी ईवेंट श्रोता को किसी तत्व में जोड़ने के लिए आप किस विधि का उपयोग करेंगे?

Questions No: 6/20

How do you add a new HTML element to the DOM in JavaScript?
आप जावास्क्रिप्ट में DOM में एक नया HTML तत्व कैसे जोड़ते हैं?

Questions No: 7/20

Which method is used to toggle a class on an element?
किसी तत्व पर कक्षा को टॉगल करने के लिए किस विधि का उपयोग किया जाता है?

Questions No: 8/20

Which of the following is used to change the content of an HTML element?
HTML तत्व की सामग्री को बदलने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?

Questions No: 9/20

How do you append a new child element to an existing element in the DOM?
आप DOM में किसी मौजूदा तत्व में नया चाइल्ड तत्व कैसे जोड़ते हैं?

Questions No: 10/20

Which of the following properties is used to check whether an element has child nodes?
निम्नलिखित में से किस गुण का उपयोग यह जांचने के लिए किया जाता है कि किसी तत्व में चाइल्ड नोड हैं या नहीं?

Questions No: 11/20

How do you insert an element before another specified element in the DOM?
आप DOM में किसी अन्य निर्दिष्ट तत्व से पहले एक तत्व कैसे सम्मिलित करते हैं?

Questions No: 12/20

What will the following JavaScript code do?

var element = document.getElementById("myDiv");
element.remove();

Questions No: 13/20

How can you access an element by its tag name in JavaScript?
आप जावास्क्रिप्ट में किसी तत्व को उसके टैग नाम से कैसे एक्सेस कर सकते हैं?

Questions No: 14/20

Which of the following methods can be used to remove an attribute from an HTML element?
HTML तत्व से किसी विशेषता को हटाने के लिए निम्नलिखित में से किस विधि का उपयोग किया जा सकता है?

Questions No: 15/20

What is the correct way to change the background color of an element using DOM manipulation?
DOM हेरफेर का उपयोग करके किसी तत्व की पृष्ठभूमि का रंग बदलने का सही तरीका क्या है?

Questions No: 16/20

Which method is used to replace an existing element in the DOM with a new one?
DOM में मौजूदा तत्व को नए तत्व से बदलने के लिए किस विधि का उपयोग किया जाता है?

Questions No: 17/20

How can you retrieve the value of an input field in a form using JavaScript?
आप जावास्क्रिप्ट का उपयोग करके किसी फॉर्म में इनपुट फ़ील्ड का मान कैसे प्राप्त कर सकते हैं?

Questions No: 18/20

How can you access all elements with a specific class name?
आप किसी विशिष्ट वर्ग नाम वाले सभी तत्वों तक कैसे पहुंच सकते हैं?

Questions No: 19/20

Which of the following properties is used to change the text inside an HTML element?
HTML तत्व के अंदर टेक्स्ट को बदलने के लिए निम्नलिखित में से किस गुण का उपयोग किया जाता है?

Questions No: 20/20

How can you retrieve all the child elements of a specific DOM node?
आप किसी विशिष्ट DOM नोड के सभी चाइल्ड तत्वों को कैसे पुनः प्राप्त कर सकते हैं?