IT Question Bank 2nd Sem 2024-25 - XI Commerce and Science
IT Question Bank 2nd Sem 2024-25 - XI Commerce and Science
XI SCIENCE / COMMERCE
Note : For Q3,Q4 & Q5 refer Textbook and Objective Hand Book.
4. Define Database:
Database is collection of interrelated data which helps in efficient retrieval, inserting and
deleting data.
7. What is Firewall?
Firewall refers to network security system which blocks certain type of information forming a
barrier between a trusted and untrusted network. It attempts to block the spread of computer
attacks.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>HEADING TAGS </TITLE>
</HEAD>
<BODY>
<H1>HELLO WORLD</H1>
<H2>HELLO WORLD</H2>
<H3>HELLO WORLD</H3>
<H4>HELLO WORLD</H4>
<H5>HELLO WORLD</H5>
<H6>HELLO WORLD</H6>
</BODY>
</HTML>
2. Write the HTML code to display the text “GOD IS GREAT” In BOLD, ITALIC and UNDERLINE
format.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>HEADING TAGS </TITLE>
</HEAD>
<BODY>
<B>GOD IS GREAT</B>
<I>GOD IS GREAT</I>
<U>GOD IS GREAT</U>
</BODY>
</HTML>
3. Write the HTML code to display your STD in Bold, STREAM in Italic & DIV in Underline format.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>HEADING TAGS </TITLE>
</HEAD><BODY>
<B>STD – XI </B>
<I>STREAM – SCIENCE / COMMERCE</I>
<U>DIV –A </U></BODY></HTML>
4. Write the HTML code to display : Background color should be red, text should be yellow,
heading should be large in size “MY FIRST WEB PAGE”. Display a blue horizontal line and display
your name in bold, address in italics.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>HEADING TAGS </TITLE>
</HEAD>
<BODY>
<H1 ALIGN=CENTER>MY FIRST WEB PAGE</H1>
<HR COLOR=BLUE SIZE=5>
<B>NAME – AKASH GANGA </B>
<I>ADDRESS – AMBETKAR CHOWK, <BR>
ULHASNAGAR - 4</I>
</BODY>
</HTML>
5. Write the HTML code to display the following output background color as pink and text color as
blue : X2+2XY+Y2=0
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>HEADING TAGS </TITLE>
</HEAD>
<BODY BGCOLOR=PINK TEXT=BLUE>
X<SUP>2</SUP>+2XY+Y<SUP>2</SUP>=0
</BODY>
</HTML>
6. Write the HTML code to display the following output background color as yellow and text color
as red : (a+b)2=a2+2ab+b2
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY BGCOLOR=YELLOW TEXT=RED>
(a+b)<SUP>2</SUP>=a<SUP>2</SUP>+2ab+b<SUP>2</SUP>
</BODY></HTML>