1stsampleITpaper (1)
1stsampleITpaper (1)
10. _______ gives user access to storage, networking, servers and other
computing. Answer-: a
a) IaaS b) PaaS
c) SaaS d) API
Q.4 Multiple Choice Questions (Select 2 Answers): [20 marks]
3. Other factor to rank the website higher are ________ and ______ Answer-: b
c
a) Desktop friendly Space b) Speed of the website
c) Creating robots.txt Space d) No backlinks
1. Attributes used along with <link> tag of External Style Sheet. Answer-:
bcd
a) src d) href
b) type e) style
c) rel f) img
2. Write a html program to display Maharashtra State Board in blue color and
font size 30 pixels using internal CSS. Give background color yellow for the web
page.
function square()
{
var a,Square,Cube;
a = parseInt(document.getElementById ("first").value);
//Formulae for Square and Cube
Square = a*a;
Cube = a*a*a;
document.getElementById ("num").innerHTML ="Square of "+a+" is : "+Square;
document.getElementById ("num1").innerHTML ="Cube of "+a+" is : " +Cube;
}
</script></html>
<html>
<head><title>eventhadler</title>
<Script Language="Javascript">
function f1()
{
var number = parseInt(prompt('Enter a positive integer: '));
var sum = 0;
for (i = 1; i <= 50; i++)
{
sum=sum+ i;
}
document.write('The sum of natural numbers:”+ sum);
</script></head>
<body>
<form name="frm1">
<input type="button" value="change color" onClick="f1()">
</form></body></html>