CSS - Exp 1 - PDF - UPDATED MONDAY
CSS - Exp 1 - PDF - UPDATED MONDAY
CODE:
<html>
<head>
<title> Exp1.1 </title>
<script>
document.write("Hello World!");
document.write("<hr>")
document.write("220402-Ansari Abdullah");
</script>
</head>
</html>
OUTPUT:
▪ Write a program to take username as input and print it
CODE:
<html>
<head>
<title> Exp1.2 </title>
<script>
var m=prompt("Enter your Name: ");
document.write("Your Name is "+m);
document.write("<br>");
document.write("220402-Ansari Abdullah");
</script>
</head>
</html>
OUTPUT:
▪ Write a program for arithmetic expression evaluation and message printing
CODE:
<html>
<head>
<title> Exp1.3 </title>
<script>
var a=parseInt(prompt("Enter 1st No: "));
var b=parseInt(prompt("Enter 2nd No: "));
var c=a+b;
alert("Addition: "+c);
</script>
</head>
</html>
OUTPUT: