3. Web Technology II [Most Important Questions and Solutions]
IMPORTANT OLD QUESTION OF WEB TECHNOLOGY II JavaScript (Client-side scripting): 2081 GIE Set A Write a JavaScript code snippet, along with HTML, that displays the multiplication table of an entered number. Ans: <!DOCTYPE html> <html> <head> <title>Multiplication Table</title> </head> <body> <script> function multiplication() { var n; n = parseInt(prompt("Enter a number:")); document.write("Multiplication Table of " + n); for (var i = 1; i <= 10; i++) { document.writ...