Posts

Showing posts from July, 2022

Web Technology

1. Which of the following is not JavaScript Data Types? a. Undefined b. Number c. Boolean d. Float ans ---> Float 2. Inside which HTML element do we put the JavaScript? a. <script> b. <head> c. <meta> d. <style> ans---> <script> 3. Predict Output: nm="Fruit"; m=nm.length; switch(m){ case 2: document.write("two");               break; case 3: document.write("three");               break; case 4: document.write("four");              break; case 5: document.write("five");               break; case 6: document.write("six");               break; case 7: document.write("seven");               break; } a. four b. five c. 5 d. 4 ans ---> five 4. >>> in JavaScript is known as  a. bitwise shift right operator b. b...