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


.

PDF FILE TO YOUR EMAIL IMMEDIATELY PURCHASE NOTES & PAPER SOLUTION. @ Rs. 50/- each (GST extra)

SUBJECTS

HINDI ENTIRE PAPER SOLUTION

MARATHI PAPER SOLUTION

SSC MATHS I PAPER SOLUTION

SSC MATHS II PAPER SOLUTION

SSC SCIENCE I PAPER SOLUTION

SSC SCIENCE II PAPER SOLUTION

SSC ENGLISH PAPER SOLUTION

SSC & HSC ENGLISH WRITING SKILL

HSC ACCOUNTS NOTES

HSC OCM NOTES

HSC ECONOMICS NOTES

HSC SECRETARIAL PRACTICE NOTES

2019 Board Paper Solution

HSC ENGLISH SET A 2019 21st February, 2019

HSC ENGLISH SET B 2019 21st February, 2019

HSC ENGLISH SET C 2019 21st February, 2019

HSC ENGLISH SET D 2019 21st February, 2019

SECRETARIAL PRACTICE (S.P) 2019 25th February, 2019

HSC XII PHYSICS 2019 25th February, 2019

CHEMISTRY XII HSC SOLUTION 27th, February, 2019

OCM PAPER SOLUTION 2019 27th, February, 2019

HSC MATHS PAPER SOLUTION COMMERCE, 2nd March, 2019

HSC MATHS PAPER SOLUTION SCIENCE 2nd, March, 2019

SSC ENGLISH STD 10 5TH MARCH, 2019.

HSC XII ACCOUNTS 2019 6th March, 2019

HSC XII BIOLOGY 2019 6TH March, 2019

HSC XII ECONOMICS 9Th March 2019

SSC Maths I March 2019 Solution 10th Standard11th, March, 2019

SSC MATHS II MARCH 2019 SOLUTION 10TH STD.13th March, 2019

SSC SCIENCE I MARCH 2019 SOLUTION 10TH STD. 15th March, 2019.

SSC SCIENCE II MARCH 2019 SOLUTION 10TH STD. 18th March, 2019.

SSC SOCIAL SCIENCE I MARCH 2019 SOLUTION20th March, 2019

SSC SOCIAL SCIENCE II MARCH 2019 SOLUTION, 22nd March, 2019

XII CBSE - BOARD - MARCH - 2019 ENGLISH - QP + SOLUTIONS, 2nd March, 2019

HSC Maharashtra Board Papers 2020

(Std 12th English Medium)

HSC ECONOMICS MARCH 2020

HSC OCM MARCH 2020

HSC ACCOUNTS MARCH 2020

HSC S.P. MARCH 2020

HSC ENGLISH MARCH 2020

HSC HINDI MARCH 2020

HSC MARATHI MARCH 2020

HSC MATHS MARCH 2020


SSC Maharashtra Board Papers 2020

(Std 10th English Medium)

English MARCH 2020

HindI MARCH 2020

Hindi (Composite) MARCH 2020

Marathi MARCH 2020

Mathematics (Paper 1) MARCH 2020

Mathematics (Paper 2) MARCH 2020

Sanskrit MARCH 2020

Sanskrit (Composite) MARCH 2020

Science (Paper 1) MARCH 2020

Science (Paper 2)

Geography Model Set 1 2020-2021


MUST REMEMBER THINGS on the day of Exam

Are you prepared? for English Grammar in Board Exam.

Paper Presentation In Board Exam

How to Score Good Marks in SSC Board Exams

Tips To Score More Than 90% Marks In 12th Board Exam

How to write English exams?

How to prepare for board exam when less time is left

How to memorise what you learn for board exam

No. 1 Simple Hack, you can try out, in preparing for Board Exam

How to Study for CBSE Class 10 Board Exams Subject Wise Tips?

JEE Main 2020 Registration Process – Exam Pattern & Important Dates


NEET UG 2020 Registration Process Exam Pattern & Important Dates

How can One Prepare for two Competitive Exams at the same time?

8 Proven Tips to Handle Anxiety before Exams!

BUY FROM PLAY STORE

DOWNLOAD OUR APP

HOW TO PURCHASE OUR NOTES?

S.P. Important Questions For Board Exam 2022

O.C.M. Important Questions for Board Exam. 2022

Economics Important Questions for Board Exam 2022

Chemistry Important Question Bank for board exam 2022

Physics – Section I- Important Question Bank for Maharashtra Board HSC Examination

Physics – Section II – Science- Important Question Bank for Maharashtra Board HSC 2022 Examination

Important-formula



THANKS