{"id":42179,"date":"2023-01-31T10:00:25","date_gmt":"2023-01-31T04:30:25","guid":{"rendered":"https:\/\/www.aplustopper.com\/?p=42179"},"modified":"2023-02-01T09:21:59","modified_gmt":"2023-02-01T03:51:59","slug":"plus-two-computer-science-chapter-wise-previous-questions-chapter-4","status":"publish","type":"post","link":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/","title":{"rendered":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology"},"content":{"rendered":"

Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 4 Web Technology<\/h2>\n

Question 1.
\n\u201cAn HTML document requires a structure”. Justify tLIs statement. [MARCH – 2007]<\/span> (3)
\nAnswer:
\nHTML page has a well defined structure. The main sections of HTML document are given below.
\n<HTML>-<\/HTML><\/p>\n

The entire HTML document is bounded with <HTML> and <\/HTML>
\n<Head>-<\/Head> TLIs defines the head section. The head section includes information such as document title, general style definition etc.<\/p>\n

<Title>-<\/Title> TLIs encloses a Title. Title is given in head section. Text given in <TITLE>-<\/TITLE>will displayed in the Title Bar.<\/p>\n

<Body><\/Body>. Content of the document is written witLIn <BODY> and <\/BODY>
\nEg.<\/p>\n

<HTML>\r\n<Head>\r\n<Title>First Page<\/Title>\r\n<\/Head>\r\n<Body>\r\nHello\r\n<\/BODY>\r\n<\/HTML><\/pre>\n

Question 2
\nWrite the HTML code required to display the following in a web page(use list tags). [MARCH – 2008]<\/span> (5)
\nListBox
\nA ListBox control displays a list of items from which a user can select one or more items ComboBox
\nA ComboBox control combines the features of a textbox and a ListBox.
\nFrame
\nA frame provides grouping for controls
\nAnswer:<\/p>\n

<html>\r\n<head>\r\n<title>\r\nDefinition list \r\n<\/title>\r\n<\/head>\r\n<body>\r\n<dl>\r\n<dt>ListBox\r\n<dd>A ListBox control displays a list of items from wLIch a user can select one or more items \r\n<dt>ComboBox\r\n<dd>A ComboBox control combines the features of a textbox and a ListBox.\r\n<dt>Frame\r\n<dd>A frame provides grouping for controls \r\n<\/dl>\r\n<\/body>\r\n<\/html><\/pre>\n

Question 3.
\nGopal wants to set lettertype for a paragraph of text in one of LIs web pages with following properties. Anal font with size 5 and colour red.\u00a0[MARCH – 2008]<\/span> (1)
\nAnswer:
\n<BASEFONT Face=\u201dArial\u201d size=5 color=\u201dred\u201d><\/p>\n

Question 4.
\nSuresh is designing a web page. He wants to display an image in the right side of text. Write the HTML code for it. [June 2008]<\/span> (2)
\nAnswer:
\n<img SRC=\u201dhome.jpg\u201d Align=\u201dRight\u201d><\/p>\n

Question 5.
\nIf you analyse web pages you can see different colors to links, visited links, background etc. Suggest how tLIs can be done in HTML with example.\u00a0[June 2008]<\/span> (3)
\nAnswer:
\nWe can use the attributes of <Body>tag
\n1) Bgcolor-specifies background colorforthe document Body
\nEg. <BODY BGCOLOR= \u201cRED\u201d><\/p>\n

2) Background – Sets the image as background for the document body
\nEg. <BODY BACKGROUND= \u201cC:\/page1 .jpg\u201d><\/p>\n

3) Text- Specifies the color of the text content of the page
\nEg. <BODYTEXT= \u201cBlue\u201d><\/p>\n

4) Link- Specifies colour of the hyperlinks that are not visited by the viewer
\n5) Alink-Specifies the colour of hyperlinks
\n6) Vlink- Specifies the color of hyperlinks wLIch are already visited by the viewer.
\nEg.<BODY ALINK = \u201cBlue\u201d VLINK=”cyan\u201d VLINK=\u201cYellow\u201d><\/p>\n

Question 6.
\nWhat are the two types of hyperlinks available in HTML.\u00a0[June 2008]<\/span>
\nAnswer:
\nThe power of HTML lies in the ability to provide hyperlinks. <A> tag is used for this. There are two types of Linking.
\n1) External Linking. External links are hyperlinks given to another page. By clicking on hypertext we can link or go to other webpages.
\n<A> Anchor tag is used for External Linking.
\n<Ahref=\u201cc:\\main.htmF>Main<\/A><\/p>\n

2) Internal Linking- Internal Links are given to a section in the same document.
\n<HTML>
\n<HEAD>
\n<Title> Internal linking<\/Title>
\n<\/HEAD>
\n<Body>
\n<P><A name=\u201dBio\u201d>Biology Group<\/A><BR>
\nSubject combinations are Physics, Chemistry, Mathematics and Biology. <P>
\n<P><A Name= \u201ccomp”> computergroup<\/A> <BR>
\nSubject combination are Physics, Chemistry, Mathematics and Computer Science. <P>
\n<P><A name=\u201cComm\u201d> Commerce Group<\/A> <BR>
\nThe subject combination are Business studies, Economics, Accountancy and Computer Application
\n<br><A href=\u201d#Bio\u201d>Go Biology<\/A>
\n<br><A href=\u201d#Comp\u201d>Go Com’puter<\/A>
\n<br><A href=\u201d#Comm\u201d>Go Commence<\/A>
\n<\/p>
\n<\/Body>
\n<\/HTML><\/p>\n

Question 7.
\nThe DIR attribute of <HTML> tag is used to indicate ________ [June 2009]<\/span> (1)
\nAnswer:
\nDirection<\/p>\n

Question 8.
\nDifferentiate container tag and empty tag. [June 2009]\u00a0<\/span>(2)
\nAnswer:
\nContainer tag : It has both opening tag and closing
\ntagEx: <html>,<head>,<body>, ………..
\nEmpty tag : It has only opening tag no closing tag Ex: <br>, <hr>, ………..<\/p>\n

Question 9.
\nWLIch of the following is not a browser program [FEBRUARY – 2009]<\/span>
\na) MOSAIC
\nb) Windows Explorer (1)
\nc) Internet Explorer
\nd) Netscape Navigator
\nAnswer:
\nWindows Explorer<\/p>\n

Question 10.
\nThe following code intends to centralize the image mypic.gif in browser window <IMG src-mypic.gif align =center> however, the desired result is not coming. Can you point out the reason for it and a solution for it ? [FEBRUARY – 2009]\u00a0<\/span>(2)
\nAnswer:
\nThe attribute align has no value center. It can take values left, right, top, middle and bottom.
\nThe right code is <IMG src-mypic.gif align =middle><\/p>\n

Question 11
\nWrite the HTML code for creating the following Webpage: [March 2010]<\/span> (2)
\nABC Pvt. Ltd.
\nHYDERABAD.
\n1. Health Care
\n2. Baby Products
\na. Toys
\nb. Dress
\n3. Men\u2019s Wear
\n* Casuals
\n* Formais
\nAnswer:<\/p>\n

<HTML>\r\n<HEAD>\r\n<TITLE> ABC Pvt.Ltd<\/TlTLE>\r\n<HEAD>\r\n<BODY>\r\n<LI> ABC Pvt. Ltd. \r\n<Br>HYDERABAD\r\n<\/LI> \r\n<OL>\r\n<LI>Health Care \r\n<LI>Baby products\r\n<OLType=\u201da\u201d>\r\n<L>Toys\r\n<LI>Dress\r\n<\/OL>\r\n<LI> Mens Wear \r\n<UL>\r\n<LI>Casuals\r\n<LI>Formals\r\n<\/UL>\r\n<\/OL>\r\n<\/BODY>\r\n<\/HTML><\/pre>\n

Question 12.
\nName the software used to view a web page. [June 2010]<\/span> (1)
\nAnswer:
\nWeb Browser- Microsoft Internet Explorer, Netscape Navigator<\/p>\n

Question 13.
\nList the steps for creating a hyperlink with an example. [June 2010]<\/span> (2)
\nAnswer:
\nThe power of HTML lies in the ability to provide , hyperlinks. <A> tag is used for tLIs. There are two types of Linking.<\/p>\n

1) External Linking. External links are hyperlinks given to another page. By clicking on hyper text we can link or go to other webpages.
\n<A> Anchor tag is used for External Linking.
\n<A href= \u201cc:\\main. html\u201d>Main<\/A><\/p>\n

2) Internal Linking- Internal Links are given to a section in the same document.<\/p>\n

<HTML>
\n<HEAD>
\n<Title> Internal linking<\/Title>
\n<\/HEAD>
\n<Body>
\n<P><A name=\u201dBio\u201d>Biology Group<\/A><BR>
\nSubject combinations are Physics, Chemistry, Mathematics and Biology. <P>
\n<P><A Name= \u201ccomp\u201d> computer group<\/A> <BR>
\nSubject combination are Physics, Chemistry, Mathematics and Computer Science. <P>
\n<P><A name=\u2018Comm> Commence \u00a9oup<\/A> <BR>
\nThe subject combination are Business studies, Economics, Accountancy and Computer Application
\n<br><A href=\u201d#Bio\u201d>Go Biology<\/A>
\n<br><A href=\u201d#Comp\u201d>Go Computer<\/A>
\n<br><A href=\u201d#Comm\u201d>Go Commerce<\/A>
\n<\/p>
\n<\/Body>
\n<\/HTML><\/p>\n

Question 14.
\nSuppose you want to place a picture in a web page. WLIch tag is used for tLIs purpose? [March 2011]<\/span> (2)
\nAnswer:
\n<img src=\u201dfilename\u201d><\/p>\n

Question 15.
\nHTTPS stands for __________ [March 2016]<\/span> (1)
\nAnswer:
\nHyper Text Transfer Protocol Secure<\/p>\n

Question 16.
\nHow will you distinguish a static webpage from a dynamic webpage? [March 2016]<\/span> (2)
\nAnswer:<\/p>\n\n\n\n\n\n\n\n
Static web page<\/td>\nDynamic web page<\/td>\n<\/tr>\n
1. Content and layout is fixed<\/td>\n1. Not fixed, may change\u00a0during run time.<\/td>\n<\/tr>\n
2. Never use databases<\/td>\n2. It uses databases<\/td>\n<\/tr>\n
3. Directly runs on the\u00a0browser<\/td>\n3. Runs on the server-side application program<\/td>\n<\/tr>\n
4. Not interactive<\/td>\n4. Interactive<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

Question 17
\nWrite HTML code for a webpage of an institution with the following features. It should have a marquee welcoming users, a heading in different fonts and a picture and address of the institution. (3)
\nAnswer:<\/p>\n

<html>\r\n<head>\r\n<title>\r\nBVM institute\r\n<\/title>\r\n<\/head>\r\n<body bgcolor = \u201cCyan\u201d>\r\n<MARQUEE height = \u201c100\u201d width = \u201c100 %\u201d\r\nBgcolor = \u201cred\u201d behavior = \u201cscroll\">\r\nBVM HSS welcomes you <\/MARQUEE>\r\n<H1 > BVM HSS <\/H1 >\r\n<Fontsize= \u201c12\u201d Face = \u201cCourier New\u201d> Kalparamba <\/Font>\r\n<img src= \u201cschool.jpg\u201d height= \u201c200\u201d width=\u201d200\u201d align =\u201dtop\u201d>\r\n<\/body>\r\n<\/html><\/pre>\n

Question 18.
\na) Classify the following scripting language into client side and server side : ASP, PHP, JavaScript, VBScript (2)
\nb) Write any one use of client side scripting. (1)
\nAnswer:
\na) Client side script – Server side script
\nJavaScript – ASP
\nVBscript – PHP<\/p>\n

b) Client side scripts are executed by the browser (client)-hence reduces network traffic and work load on the server.<\/p>\n

Question 19.
\nFill the following table with appropriate points to distinguish between <P> tag and <BR> tag.<\/p>\n\n\n\n\n\n\n
<P> tag<\/td>\n\u00a0<BR>tag<\/td>\n<\/tr>\n
1) …………………….<\/td>\n\u00a01. breaks the current line and continues to the next line<\/td>\n<\/tr>\n
2) Container tag<\/td>\n<\/td>\n<\/tr>\n
3) Align attributes sets the alignment of the text in the paragraph<\/td>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

Answer:<\/p>\n\n\n\n\n\n\n
<P> tag<\/td>\n\u00a0<BR>tag<\/td>\n<\/tr>\n
1. It indicates a new paragraph and instructs the browser to add a blank line before the paragraph<\/td>\n\u00a01. breaks the current line and continues to the next line<\/td>\n<\/tr>\n
2) Container tag<\/td>\n2. Empty tag<\/td>\n<\/tr>\n
3) Align attributes sets the alignment of the text in the paragraph<\/td>\n3. It has no align attribute<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

Question 20.
\na) Write an HTML code to display a list of hardware and software of a company in the following format:
\nI) Hardware
\n1) Cables
\ni) DTP
\nii) Coaxial
\niii) Fiberoptic<\/p>\n

2) Storage Devices
\ni) USB
\nii) Hard Disk
\niii) Tape<\/p>\n

II) Software
\n1) Application Software
\ni) MS Office
\nii) Inventory Management System<\/p>\n

2) System Software
\ni) Compilers
\nii) Assemblers (5)
\nOR
\nb) Write an HTML code to display a user registration form as shown below:
\n\"Plus
\nAnswer:
\n\"Plus
\n\"Plus
\n\"Plus
\n\"Plus<\/p>\n

Question 21.
\nDefault port number for HTTPS is _______ (1)
\nAnswer:
\nThe default port number for HTTPS is 443.<\/p>\n

(Note that 80 is the default port number for HTTP).<\/p>\n

Question 22.
\nWhat are the various types of client side scripting languages? (2)
\nAnswer:
\nClient scripts – These are scripts executed by the browser(client) hence reduces network traffic and workload on the server.<\/p>\n

Java script and VB Script are the two client side scripting languages.<\/p>\n

Java script(developed by Brendan Eich for the Netscape browser) is a platform independent scripting language. Means It does not require a particular browser. That is it runs on any browser hence it is mostly ac cepted scripting language. But VB Script(developed by Microsoft) is a platform dependent scripting language. Means it requires a particular browser(MS Internet Explorer) to work that is why it is not widely accepted scripting language.<\/p>\n

Question 23.
\nDevelop a web page of an organization with the following features:
\na) Has an image as background.
\nb) Welcomes users with a marquee in attractive fonts.
\nc) Displays address of the organization. (3)
\nAnswer:
\n\"Plus<\/p>\n

Question 24.
\nExpand the name of the language wLIch is used to develop webpage..’ (1)
\nAnswer:
\nHTML-Hyper Text Mark up Language<\/p>\n

Plus Two Computer Science Chapter Wise Previous Questions<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"

Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 4 Web Technology Question 1. \u201cAn HTML document requires a structure”. Justify tLIs statement. [MARCH – 2007] (3) Answer: HTML page has a well defined structure. The main sections of HTML document are given below. <HTML>-<\/HTML> The entire HTML document is bounded with […]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[42728],"tags":[],"yoast_head":"\nPlus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology - A Plus Topper<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology\" \/>\n<meta property=\"og:description\" content=\"Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 4 Web Technology Question 1. \u201cAn HTML document requires a structure”. Justify tLIs statement. [MARCH – 2007] (3) Answer: HTML page has a well defined structure. The main sections of HTML document are given below. <HTML>-<\/HTML> The entire HTML document is bounded with […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/\" \/>\n<meta property=\"og:site_name\" content=\"A Plus Topper\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aplustopper\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-31T04:30:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-01T03:51:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasanna\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.aplustopper.com\/#organization\",\"name\":\"Aplus Topper\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/aplustopper\/\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"contentUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"width\":1585,\"height\":375,\"caption\":\"Aplus Topper\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.aplustopper.com\/#website\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"name\":\"A Plus Topper\",\"description\":\"Improve your Grades\",\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.aplustopper.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png\",\"contentUrl\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#webpage\",\"url\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/\",\"name\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology - A Plus Topper\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#primaryimage\"},\"datePublished\":\"2023-01-31T04:30:25+00:00\",\"dateModified\":\"2023-02-01T03:51:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.aplustopper.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\"},\"headline\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology\",\"datePublished\":\"2023-01-31T04:30:25+00:00\",\"dateModified\":\"2023-02-01T03:51:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#webpage\"},\"wordCount\":1672,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png\",\"articleSection\":[\"HSSLiVE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\",\"name\":\"Prasanna\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"caption\":\"Prasanna\"},\"url\":\"https:\/\/www.aplustopper.com\/author\/prasanna\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology - A Plus Topper","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/","og_locale":"en_US","og_type":"article","og_title":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology","og_description":"Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 4 Web Technology Question 1. \u201cAn HTML document requires a structure”. Justify tLIs statement. [MARCH – 2007] (3) Answer: HTML page has a well defined structure. The main sections of HTML document are given below. <HTML>-<\/HTML> The entire HTML document is bounded with […]","og_url":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/","og_site_name":"A Plus Topper","article_publisher":"https:\/\/www.facebook.com\/aplustopper\/","article_published_time":"2023-01-31T04:30:25+00:00","article_modified_time":"2023-02-01T03:51:59+00:00","og_image":[{"url":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png"}],"twitter_card":"summary","twitter_misc":{"Written by":"Prasanna","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.aplustopper.com\/#organization","name":"Aplus Topper","url":"https:\/\/www.aplustopper.com\/","sameAs":["https:\/\/www.facebook.com\/aplustopper\/"],"logo":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#logo","inLanguage":"en-US","url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","contentUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","width":1585,"height":375,"caption":"Aplus Topper"},"image":{"@id":"https:\/\/www.aplustopper.com\/#logo"}},{"@type":"WebSite","@id":"https:\/\/www.aplustopper.com\/#website","url":"https:\/\/www.aplustopper.com\/","name":"A Plus Topper","description":"Improve your Grades","publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.aplustopper.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#primaryimage","inLanguage":"en-US","url":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png","contentUrl":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png"},{"@type":"WebPage","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#webpage","url":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/","name":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology - A Plus Topper","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#primaryimage"},"datePublished":"2023-01-31T04:30:25+00:00","dateModified":"2023-02-01T03:51:59+00:00","breadcrumb":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aplustopper.com\/"},{"@type":"ListItem","position":2,"name":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology"}]},{"@type":"Article","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#article","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#webpage"},"author":{"@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794"},"headline":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 4 Web Technology","datePublished":"2023-01-31T04:30:25+00:00","dateModified":"2023-02-01T03:51:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#webpage"},"wordCount":1672,"commentCount":0,"publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"image":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-4-Web-Technology-1.png","articleSection":["HSSLiVE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-4\/#respond"]}]},{"@type":"Person","@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794","name":"Prasanna","image":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","caption":"Prasanna"},"url":"https:\/\/www.aplustopper.com\/author\/prasanna\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42179"}],"collection":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/comments?post=42179"}],"version-history":[{"count":1,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42179\/revisions"}],"predecessor-version":[{"id":155370,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42179\/revisions\/155370"}],"wp:attachment":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/media?parent=42179"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/categories?post=42179"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/tags?post=42179"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}