PDF Document
PDF Document
1. _______ value of the text-decoration property is used to give line over the
text. Answer-: overline
2. In image mapping clickable regions are called as ______ Answer-: hotpots
3. __________ tag should be self enclosed. Answer-: Singular
4. _______ is a free SEO Audit Tool that will perform a detailed SEO Analysis. Answer-:
SEOptimer
5. _________ method of window object display the alert box contain message with OK
button. Answer-: alert()
6. ________ object helps us to work with number. Answer-: Number
7. 24 x 7 Service is available with _________ commerce. Answer-: Electronic
8. In B2C model, business sells its products directly to ____ Answer-: Customer
9. _________ is more efficient and inexpensive than other cloud solution. Answer-: public
10. A ______ is a computer system that serves as a central repository of data and
programs. Answer-: Server
6. _________ method of window object displays a dialog box to get input from the
user. Answer-: d
a) alert() Space b) opent()
c) confirm() Space d) prompt()
3. Social Media Optimization deals with enhancing the websites ranking using
________ and _______ Answer-: a c
a) Blogs Space b) E-commerce website
c) Facebook Space d) Wikipedia
Space e) Banking
9. Following are the pre defined functions in PHP to manipulate string. Answer-: a
b
a) trim() Space b) substr()
c) length() Space d) strreverse()
Space e) stringlen()
1. Write a html program to create a form to accept Doctor name, number of patients
(maximum 20), Date of examining patients.
2. Write html program to accept Name of the hospital, Email Id of the hospital, Number
of beds in the hospital. The data should be sent to the server.
1. Write an event driven JavaScript code to accept two numbers and display the largest
number.
!doctype html>
<html>
<head>
<script>
function largesstnum()
{
var num1, num2, num3;
num1 =
Number(document.getElementById("fnum").value);
num2 =
Number(document.getElementById("snum").value);
if(num1>num2)
{
window.alert(num1+"-is Larger");
}
else if(num2>num1)
{
window.alert(num2+"-is Larger");
}
else if(num2>num1 && num2>num1)
{
window.alert(num2+"is Larger");
}
}
</script>
</head>
<body>
<h1>Check largest number </h1>
<br>
Enter number 1: <input type="text" id="fnum"></input><br>
Enter number 2: <input type="text" id="snum"></input><br>
<button onclick="largesstnum()">submit</button>
</body>
</html>
2. Write an event driven JavaScript code to change background color of document area,
use onmouseup event handler of button.
</script></head>
<body>
<form name="frm1">
<input type="button" value="change color" onMouseUp="f1()">
</form></body></html>
<html>
<head><title>eventhadler</title>
<Script Language="Javascript">
function f1()
{
document.bgColor="Orange";
window.setTimeout("f2()",2000);
}
</script></head>