Back to the 2023 paper
Similar questions
Web TechnologyWhich of the following is used to define the structure of an XML document? (i) XSL (ii) DTD (iii) CSS (iv) HTML20252mWeb TechnologyWhich of the following tag is used to embed CSS in HTML page? (i) <css> (ii) <!DOCTYPE html> (iii) <script> (iv) <style>20232mDATABASE MANAGEMENT SYSTEMWhich of the following is generally used for performing tasks like creating the structure of the relations or deleting relations? - (i) DML - (ii) Query - (iii) Relational schema - (iv) DDL20242mWeb TechnologyWhich of the following is an advantage of putting presentation information in a separate CSS file rather than in HTML itself? (i) The content becomes easy to manage (ii) Becomes easy to make site for different devices like mobile by making separate CSS files (iii) CSS files are generally cached and therefore decrease server load and network traffic (iv) All of the above20202m
PreviousWhat is an event in delegation event model used by Java programming language? (i) An event is an object that describes a state change in a source (ii) An event is an object that describes a state change in processing (iii) An event is an object that describes any change by the user and system (iv) An event is a class used for defining objects, to create eventsNextWhat will be the output of the following JavaScript code snippet? <p id="demo"></p> <script> var txt1 = "BEU_"; var txt2 = "Javascript"; document.getElementById("demo").innerHTML = txt1 + txt2; </script> (i) error (ii) BEU_Javascript (iii) undefined (iv) BEU_Javascript