CBSE Class 12 Informatics Practices HTML II Lists Tables and Forms Assignment

Read and download free pdf of CBSE Class 12 Informatics Practices HTML II Lists Tables and Forms Assignment. Get printable school Assignments for Class 12 Informatics Practices. Class 12 students should practise questions and answers given here for Html II Lists Tables And Forms Informatics Practices in Class 12 which will help them to strengthen their understanding of all important topics. Students should also download free pdf of Printable Worksheets for Class 12 Informatics Practices prepared as per the latest books and syllabus issued by NCERT, CBSE, KVS and do problems daily to score better marks in tests and examinations

Assignment for Class 12 Informatics Practices Html II Lists Tables And Forms

Class 12 Informatics Practices students should refer to the following printable assignment in Pdf for Html II Lists Tables And Forms in Class 12. This test paper with questions and answers for Class 12 Informatics Practices will be very useful for exams and help you to score good marks

Html II Lists Tables And Forms Class 12 Informatics Practices Assignment

Brief Summary of the Chapter:
Making information more accessible is the single most important quality of HTML. The language’s excellent collection of text style, formatting tools, and links tools help you organize your information into documents that readers quickly understand, scan, and extract.
Beyond embellishing your text width specialized text a tag, HTML also provides a rich set of tools that help you organize content into formatted lists. Apart from lists, you can insert images into your documents to enhance its visual approach. Also many documents can be linked together using
HTML’s sophisticated linking tools.
Also, there are situations where you need to represent tabular data(data in rows and columns).
For this, HML provides Table tags.

Key Points of the Chapter:
• The numbered/ordered list <OL> tag is used to indicate a list item as contained in an ordered
or numbered form.
• An ordered list is also a list of items. The list items are marked with numbers.
• Bulleted/unordered list <UL> tag is used to indicate a list item as contained in an unordered or
bulleted form.
• LI list tag is used to denote the beginning of each new list item.
• The TYPE attribute is used to change the bulleted symbol in a list. The attribute may have a
value of circle, disc, or square. For example, <UL TYPE=disk>.
• The list items are marked with bullets (typically small black circles).
• The START attribute is used to change the beginning value of an ordered list. Normally, the
ordered list starts with 1. For example, <OL START = 10>.
• The IMG SCR tag specifies an image to be displayed in a Web page. This is an empty element,
which is coded in HTML document. It has attributes like : SRC, ALIGN, BORDER, HEIGHT,
WIDTH and ALT.
• A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with
the <td> tag).\ The letters td stands for “table data”, which is the content of a data cell.
• Links between Web pages is known as hyperlink.
• The anchor tag <A> marks the text as hypertext link.
• The HREF attribute specifies the destination of a link.
• The HREF or the name attribute must be present in the <A> tag.
• A URL, basically, is a way to tell your web browser (or other program) where to look for
something. If you want to make a hypertext link to a page. You will need its URL.
• HREF is an attribute for the <A> tag, which is displayed in a browser, the work Text
describing link would appear underlined and in another order to indicate that clicking that text
initiates the hypertext link.

Solved Questions:

1. What is an unordered list?
Ans: Bulleted/unordered list <UL> tag is used to indicate a list item as contained in an unordered or bulleted form.

2. What is ordered list?
Ans: The numbered/ordered list <OL> tag is used to indicate a list item as contained in an ordered or numbered form.

3. What is table? What are the basic commands for creating a table?
Ans: Table is a collection of rows and column.
Followings are important tags
<Table> :- used to give identification to a table
<TH> :- To provide headings in a table
<TR>:- (Table Row) to create Row in a table
<TD> :- (Table Data) to create columns in a row

4. What do you understand by ALINK? Explain with an example.
Ans: Links which are currently being visited in web page are known as Active Links (ALINK).
Example:
<BODY TEXT = “#FFFFFF” ALINK=”#FF0000”>
<A HREF=”www.kvsangathan.nic.in”> Kendriya Vidyalaya Sangathan </A><BR>
<A HREF = www.cbse.nic.in&gt; Central Board of Secondary Education </A>
</BODY>

5. What is FORM tag? Explain with example.
Ans: To create or use forms in a web page <FORM> tag is used. Form is means to collect data from the site visitor. It is done with the help of controls that collect data and send it over.
Example:
<FORM method = “POST” action=submitform.asp>

6. What is INPUT tag? Explain with example.
Ans: Text boxes are single line text input controls that are created using <INPUT> tag whose TYPE
attribute has a value as “Text”.
Example:
<FORM method = “POST” action=submitform.asp>
First Name:
Page 72 of 106
<INPUT TYPE=”text” NAME = “fname”/>
<BR>
Last Name:
<INPUT TYPE=”text” NAME = “lname” />
</FORM>

7. What is the purpose of select tag?
Ans: <SELECT> tag is used to create a drop down box in which many options are available; user can make selection from the list.
Example:
<SELECT name = “stream”>
<OPTION value=”Science”> Science</OPTION>
<OPTION value=”Commerce”> Commerce </OPTION>
<option value=”Humanities”> Humanities </OPTION>
</SELECT>

Unsolved Questions:

1. What types of list are supported by HTML?

2. Which three tags let you create the definition list?

3. Which three tags let you create the (i) un numbered lists? (ii) numbered lists?

4. What is a table? Which tag is used to create tables in HTML?

5. Which attributes are used to give border to a table?

6. Which attribute lets you control the display of select border sides of a table?

7. Which attributes is used to control the inside table border?

8. How is spacing in cells of table controlled?

9. What is the role of ALIGN attribute of <TABLE> tag?

10. How can you specify following in table?
(a) background image (b) background colour.
(c) Table height. (d) Table width.

11. What tag is used to specify
(i) Table data (ii) Table header (iii) Table row?

12. Name the attributes used for following?
(i) Setting the cell width. (iii) Setting cells background colour.
(ii) Changing the cell span. (iv) Aligning cell contents vertically.

13. What for are <TH> and <TR> tags used?

14. What are forms? Which methods and actions are commonly used with Forms?

15. Name different control types supported by HTML forms.

16. Write the tags to define the following :
(i) A text box (ii) A text area (iii) A radio button
(iv) A check box (v) A Password box (vi) A Pop up box
(vii) Submit button (viii) A label.

17. How will you nest an un order list inside an ordered list?

18. How would you indent a single word and put a square bullet in front of it?

19. Write code to produce following HTML tables?
1                     3
                       4
2                     5

21. Write HTML code to produce these controls
(i) a text box (ii) a text area with 10 rows and 30 columns
(iii) A password text box (iv) A pop up box to choose class from it.

Class 12 Informatics Practices Assignments
CBSE Class 12 Informatics Practices Concept Of Inheritance In Java
CBSE Class 12 Informatics Practices Database Concepts Assignment
CBSE Class 12 Informatics Practices Database Transactions Assignment
CBSE Class 12 Informatics Practices Extensible Markup Language Assignment
CBSE Class 12 Informatics Practices Free And Open Source Software Assignment
CBSE Class 12 Informatics Practices GUI Dialogs And Tables Assignment
CBSE Class 12 Informatics Practices HTML I Basic HTML Elements Assignment
CBSE Class 12 Informatics Practices HTML II Lists Tables and Forms Assignment
CBSE Class 12 Informatics Practices IT Applications Assignment
CBSE Class 12 Informatics Practices Java Database Connectivity To MySQL Assignment
CBSE Class 12 Informatics Practices Java GUI Programming Revision Tour Assignment
CBSE Class 12 Informatics Practices More About Classes And Libraries Assignment
CBSE Class 12 Informatics Practices More on SQL Grouping Records and Table Joins Assignment
CBSE Class 12 Informatics Practices More RDBMS Assignment
CBSE Class 12 Informatics Practices MYSQL Revision Tour Assignment
CBSE Class 12 Informatics Practices Networking and open standards Assignment
CBSE Class 12 Informatics Practices Programming Fundamentals Assignment
CBSE Class 12 Informatics Practices Revision Assignment Set A
CBSE Class 12 Informatics Practices Revision Assignment Set C
CBSE Class 12 Informatics Practices Revision Assignment Set D
CBSE Class 12 Informatics Practices Web Application Development Assignment
CBSE Class 12 Informatics Practices Worksheet All Chapters

More Study Material

CBSE Class 12 Informatics Practices Html II Lists Tables And Forms Assignment

We hope you liked the above assignment for Html II Lists Tables And Forms which has been designed as per the latest syllabus for Class 12 Informatics Practices released by CBSE. Students of Class 12 should download and practice the above Assignments for Class 12 Informatics Practices regularly. We have provided all types of questions like MCQs, short answer questions, objective questions and long answer questions in the Class 12 Informatics Practices practice sheet in Pdf. All questions have been designed for Informatics Practices by looking into the pattern of problems asked in previous year examinations. 

Assignment for Informatics Practices CBSE Class 12 Html II Lists Tables And Forms

Our team of expert teachers have referred to NCERT book for Class 12 Informatics Practices to design the Informatics Practices Class 12 Assignments. If you practice at least one test paper daily, you will get higher marks in Class 12 exams this year. Daily practice of Informatics Practices course notes and related study material will help you to clear all your doubts and have stronger understanding of all concepts. You can download all Revision notes for Class 12 Informatics Practices also from www.studiestoday.com absolutely free of cost.

Html II Lists Tables And Forms Assignment Informatics Practices CBSE Class 12

All questions and their answers for the assignment given above for Class 12 Informatics Practices have been developed as per the latest curriculum and books issued for the current academic year. The students of Class 12 can rest assured that the best teachers have designed the questions of Informatics Practices so that you are able to revise the entire syllabus if you do the assignments. Lot of MCQ questions for Class 12 Informatics Practices have also been given in the worksheets and assignments for regular use. All study material for Class 12 Informatics Practices students have been given on studiestoday.

Html II Lists Tables And Forms Assignment CBSE Class 12 Informatics Practices

Regular assignment practice helps to get a more comprehensive understanding of Html II Lists Tables And Forms concepts. Assignments play a crucial role in understanding Html II Lists Tables And Forms in CBSE Class 12. Students can download all the assignments of the same chapter in Class 12 Informatics Practices in Pdf format. You can print them or read them online on your computer or mobile.

CBSE Informatics Practices Class 12 Html II Lists Tables And Forms Assignment

CBSE Class 12 Informatics Practices latest books have been used for coming up with the latest questions and solutions for the above assignment. If you have revised all concepts relating to Html II Lists Tables And Forms then you should attempt all questions given in the test sheets above. We have also provided lot of Worksheets for Class 12 Informatics Practices which you can use to further make your self stronger in Informatics Practices

Where can I download in PDF assignments for CBSE Class 12 Informatics Practices Html II Lists Tables And Forms

You can download free Pdf assignments for CBSE Class 12 Informatics Practices Html II Lists Tables And Forms from StudiesToday.com

The assignments for Html II Lists Tables And Forms Class 12 Informatics Practices for have been made based on which syllabus

The Html II Lists Tables And Forms Class 12 Informatics Practices Assignments have been designed based on latest CBSE syllabus for Class 12 Informatics Practices issued for the current academic year

Can I download and print these printable assignments for Informatics Practices Html II Lists Tables And Forms Class 12

Yes, These printable assignments for Html II Lists Tables And Forms Class 12 Informatics Practices are free to download and print

How many topics are covered in Html II Lists Tables And Forms Informatics Practices assignments for Class 12

All topics given in Html II Lists Tables And Forms Informatics Practices Class 12 Book for the current academic year have been covered in the given assignment

Is there any charge for this assignment for Html II Lists Tables And Forms Informatics Practices Class 12

No, all Printable Assignments for Html II Lists Tables And Forms Class 12 Informatics Practices have been given for free and can be downloaded in Pdf format

How can I download the printable test assignments for Html II Lists Tables And Forms Informatics Practices Class 12

Just click on the View or Download button below, then another window with the Pdf will be visible, just click on the Pdf icon to download the free assignments for Html II Lists Tables And Forms Class 12 Informatics Practices

Are these assignments available for all chapters in Class 12 Informatics Practices

Yes, apart from Informatics Practices you can download free assignments for all subjects in Class 12

Can I download solved assignments for Html II Lists Tables And Forms CBSE Class 12 Informatics Practices

Our team of expert teachers at studiestoday.com have provided all answers for the practice questions which have been given in Class 12 Informatics Practices Html II Lists Tables And Forms assignments

For which subject have you provided the assignments on this website?

Solved assignments have been provided on StudiesToday for all chapters in Class 12 Informatics Practices assignments

Are these assignments for Class 12 Informatics Practices designed as per CBSE curriculum?

Latest syllabus issued for current academic year by CBSE has been used to design assignments for Class 12

Are there solutions or answer keys for the Class 12 Informatics Practices assignments

Yes, we have provided detailed answers for all questions given in assignments for Class 12 Informatics Practices

How can these assignments help Class 12 students prepare for exams?

Download free solved assignments for Class 12 Informatics Practices and practice them daily to get better marks in examinations

Can students get better understanding of Informatics Practices concepts taught in Class 12?

Yes, students in Class 12 will be able to understand the concepts by solving Informatics Practices for Html II Lists Tables And Forms

Do the assignments cover important topics in Class 12 Informatics Practices?

Yes, we have given practice assignments for all important topics given in Html II Lists Tables And Forms