Advertisement

Balbharati solutions for Information Technology (IT) 11th Standard HSC Maharashtra State Board chapter 3 - Impressive Web Designing

Chapter 3: Impressive Web Designing

The data entry operator wants to insert.

Photograph

OPTIONS

  • ‹image›

  • ‹text›

  • ‹textarea›

  • ‹img›

  • ‹ul›

  • ‹u›



Write remarks about the photograph

OPTIONS

  • ‹image›

  • ‹text›

  • ‹textarea›

  • ‹img›

  • ‹ul›

  • ‹u›



Underline the heading

OPTIONS

  • ‹image›

  • ‹text›

  • ‹textarea›

  • ‹img›

  • ‹ul›

  • ‹u›



Identify the logical operators in JavaScript.

OR

OPTIONS

  • logical operator

  • not logical operator



AND

OPTIONS

  • logical operator

  • not logical operator



&

OPTIONS

  • logical operator

  • not logical operator



++

OPTIONS

  • logical operator

  • not logical operator



||

OPTIONS

  • logical operator

  • not logical operator



&&

OPTIONS

  • logical operator

  • not logical operator



State at least three attributes of ‹input›



SOLUTION

  1. Type

  2. Name

  3. Maxlength

  4. Size

  5. Checked

  6. Value




SOLUTION

H2O - ‹sub›

Hello - ‹i›

a12 - ‹sup›



Group the following.



SOLUTION for Paired tags

‹b›

‹i›

‹u›

‹small›

‹sub›

‹sup›

‹ins›

‹del›

‹mark›




SOLUTION for Empty tags / Unpaired tags

‹br›

‹hr›

‹img›



Write operator names with symbol in boxes.



SOLUTION

Not !

Less than <

Greater than >

Equals to ==

Greater than or equal to >=

Less than or equal to >= 



Complete following program to display multiplication of 6.40 and 300.

‹!DOCTYPE html›

‹html›

‹head›

‹title› Series ‹/title›

‹/head›

‹body›

__________________________________

var x = ______;

var y = ______;

document.write(x ______ y);

__________________________________

‹/body›

‹/html›



SOLUTION

‹!DOCTYPE html›

‹html›

‹head›

‹title› Series ‹/title›

‹/head›

‹body›

‹script type="text/javascript"›

var x = 6.4;

var y = 300;

document.write(x * y);

</script>

‹/body›

‹/html›



Solve the following puzzles.

Fill the blocks

Across

2. The tag used to create table row.

4. Tag to create a form

Down

1. The attribute used to specify the path of a linked document.

3. The tag used to display horizontal ruled line.



SOLUTION

Across

2. tr

4. form

Down

1. href

3. hr



Solve the puzzle by finding words with the help of hint given below.

 

 

p

z

c

b

e

p

e

s

r

l

o

m

v

d

l

l

s

k

n

s

a

r

s

t

y

e

f

a

l

s

e

d

w

q

i

s

n

a

n

g

v

a

r

o

s

d

y

z

i

l

m

e

n

c

x

i

  1. Boolean value.

  2. Keyword used in conditional if statement.

  3. Built-In function in JavaScript

  4. Function to check given value is number or not

  5. Keyword used to declare variable

  6. Function used to evaluate given expression



SOLUTION

p

z

c

b

e

p

e

s

r

l

o

m

v

d

l

l

s

k

n

s

a

r

s

t

y

e

f

a

l

s

e

d

w

q

i

s

n

a

n

g

v

a

r

o

s

d

y

z

i

l

m

e

n

c

x

i

  1. Boolean value. - false

  2. Keyword used in conditional if statement. - else

  3. Built-In function in JavaScript - confirm

  4. Function to check given value is number or not - isNAN

  5. Keyword used to declare variable - var

  6. Function used to evaluate given expression - eval



Trace the output of following html code

‹!DOCTYPE html›

‹html›

‹head›

‹title›Heading tags‹/title›

‹/head›

‹body›

‹h1 align=left›Information Technology‹/h1›

‹hr›

‹h2 align=center›XI Standard‹/h2›

‹h3 align=right›Division‹/h3›

‹/body›

‹/html›



SOLUTION


Find out error if any in following javascript code.

var length, breadth;

length=4.5;

breadth=6;

area=1/2*length*breadth;

document.write("Area of triangle is"area);



SOLUTION

The last line should be 

document.write("Area of triangle is " + area);



Discuss the following and Answer the question.

A Jr. web designer wants to design a webpage to enter the employee name, address. He needs a button to clear the form content and submit the data.

  • Write the different controls he will use to create the web page.

  • State the tags to be used for the controls.



SOLUTION

‹!DOCTYPE html›

‹html›

‹head›

 ‹title›Form‹/title›

‹/head›

‹body›

 ‹form›

   ‹input type="text" name="employee_name" /›‹br /›

   ‹textarea name="address"›‹/textarea›‹br /›

   ‹input type="submit" /›‹br /›

   ‹input type="reset" /›

 ‹/form›

‹/body›

‹/html›



A teacher has asked a student to create a web page to accept number and check whether it is between 50 to 100.

  • List the variable, operators to be used.

  • Specify the built-in function used and structure used.



SOLUTION

var number;

if(number > 50 && number < 100)



Complete the following.

Event > When it occours?

onClick > ______



SOLUTION

When a user clicks an element



onKeyup > ______



SOLUTION

When a user releases key


onMouseup > ______



SOLUTION

When a user releases a mouse button over an element




Write HTML Code for the following table.



SOLUTION

‹table border="1" cellpadding="10"›

 ‹thead bgcolor="pink" align="center"›

   ‹tr›

     ‹th›Place‹/th›

     ‹th›State‹/th›

     ‹th›Maximum‹br›Temperature‹br›in C‹/th›

   ‹/tr›

 ‹/thead›

 ‹tbody bgcolor="skyblue" align="center"›

   ‹tr›

     ‹td›Wardha‹/td›

     ‹td rowspan="2"›Maharashtra‹/td›

     ‹td›47.5‹/td›

   ‹/tr›

   ‹tr›

     ‹td›Akola‹/td›

     ‹td›46.4‹/td›

   ‹/tr›

   ‹tr›

     ‹td›Khajuraho‹/td›

     ‹td rowspan="2"›Madhya‹br›Pradesh‹/td›

     ‹td›47.5‹/td›

   ‹/tr›

   ‹tr›

     ‹td›Sagar‹/td›

     ‹td›46.2‹/td›

   ‹/tr›

 ‹/tbody›

‹/table›


Balbharati Solutions for Information Technology (IT) 11th Standard HSC Maharashtra State Board

The answers for the Balbharati books are the best study material for students. These Balbharati Solutions for Information Technology (IT) 11th Standard HSC Maharashtra State Board will help students understand the concepts better.


 • Chapter 1: Basics of Information Technology

 • Chapter 2: Introduction to DBMS

 • Chapter 3: Impressive Web Designing

 • Chapter 4: Cyber Law


.