SaraNextGen.Com

Text Book Back Questions and Answers - Chapter 12 HTML–Adding Multimedia Elements and Forms 11th Computer Application Guide Samacheer Kalvi Solutions - SaraNextGen [2024-2025]


Updated On May 15, 2024
By SaraNextGen

Samacheer Kalvi 11th Computer Applications Solutions Chapter 12 HTML – Adding Multimedia Elements and Forms - Text Book Back Questions and Answers

I. Choose The Correct Answer

Question 1.
Which image format was standardize by W3C?
(a) JPEG
(b) SVG
(c) GIF
(d) PNG
Answer:
(b) SVG

Question 2.
The tag used to insert an image in HTML:
(a) Image
(b) Picture
(c) Img
(d) Pic
Answer:
(c) Img

Question 3.
In HTML, a piece of text or image can be moved horizontally or vertically by using:
(a)
(b)
(c)
(d)
Answer:
(a)

 

Question 4.
Inline sound can be inserted using which of the following tag?
(a)
(b)
(c)
(d)
Answer:
(c)

Question 5.
Which value causes the audio play as long as the page is in view?
(a) Stop
(b) Never Stop
(c) Continue
(d) Infinite
Answer:
(d) Infinite

Question 6.
The important attributes used with the

tag are:
(a) method and action
(b) name and size
(c) post and get
(d) type and name
Answer:
(a) method and action

Question 7.
The tag is used to create dropdown list box in HTML is:
(a)
(b) (c) (d)
Answer:
(b) Question 8. Match the following: Answer: (b) (iii) (iv) (i) (ii) II. Answer To The Following Questions Question 1. List out the popular image formats? Answer: Most of the browsers supports, GIF, JPEG and PNG images formats. HTML – 5 introduces SVG images. One format of image can be converted to another format by using Image editing applications such as Photoshop, Picasa, GIMP etc… Question 2. Write down the general format of marquee? Answer: In HTML, a piece of text or image can be moved horizontally or vertically by using tag. This feature makes a web page as more attractive. – General format: Text or image to be scroll . Question 3. What is inline sound or movie? Answer: The inline refers to audio or video files are handled as part of the page. These media files play the audio or video when the page is visible in the browser window. The external refers, linking external audio or video files as url. Question 4. What is the purpose of tag?
Answer:
Most of the form controls are created by using tag. The is an empty tag used to create different form elements or controls such as text box, radio buttons and so on.

Question 5.
Which tag is used to specify the list of items in dropdown list box?
Answer:
The tag is used to create dropdown listbox in HTML. It provides a list of various options as a dropdown list. This element is more helpful when a number of options are to be displayed in a limited space. Thetag is used to specify list items. Question 6. What are the major attributes are available in tag?<br /> <strong>Answer:</strong><br /> The <Textarea> tag used to receive multi line text data as input. It is a container tag. The main attributes of <Textarea> are –<br /> Name:<br /> Used to define name to the control.</p> <p>Rows:<br /> Specifies the number of rows in the text area control.</p> <p>Cols:<br /> Specifies the number of columns in the text area, (number of characters in a line).</p> <p><strong>III. Answer To The Following Questions</strong></p> <p><strong>Question 1.</strong><br /> Write a short note on familiar images format. GIF (Graphical Interchange Format):<br /> <strong>Answer:</strong><br /> This format is one of the popular format for animated images. It was developed by CompuServe. Usually this image format is suitable for presenting tiny animated images, logos, icons, line art etc… It is not suitable for photographic work, because it uses maximum of 256 colours. Animated GIF do not support sound or playback control.</p> <p>JPEG (Joint Photographic Experts Group):<br /> JPEG is the most popular image format supported by all web browsers. This format is suitable for photographic images. Unlike GIF, JPEG can include any number of colours.</p> <p>PNG (Portable Network Graphics):<br /> PNG is designed as a replacement for GIF. It is also supported by all browsers.</p> <p>SVG (Scalable Vector Graphics):<br /> SVG is a graphics format that was developed for web. It was standardized by World Wide Web Consortium (W3C) in 2001. All current web browsers supports basic features of SVG.</p> <p><strong>Question 2.</strong><br /> How will you scroll the text in HTML?<br /> <strong>Answer:</strong><br /> In HTML, a piece of text or image can be moved horizontally or vertically by using <marquee> tag. This feature makes a web page as more attractive.</p> <p>General format:<br /> <marquee> Text or image to be scroll </marquee><br /> Attributes of <marquee></p> <p>Height and Width:<br /> These attributes are used to set height and width of the marquee. The values should be either in pixels or in percentage of browser window.</p> <p>Direction:<br /> This is used to specify the direction of the movement of text or image. The text or image will move towards right to left by default. So, the default direction is left. The Possible values are ‘up’, ‘down’, ‘left’ or ‘right’.</p> <p>Behaviour:<br /> This attribute is used to specify the type of scrolling. The values are ‘scroll’, ‘slide’ and ‘alternate’.</p> <p>Scrolldelay:<br /> This attribute is used to define the time delay between each jump. The time unit should be in seconds.</p> <p>Scrollamount:<br /> This is used to define the speed of the scroll.</p> <p>Loop:<br /> This is for defining how many times the marquee element should repeat on the screen. The default value is ‘infinite’, which me the marquee element scrolls endlessly.</p> <p>Bgcolor:<br /> This is used to specify the background color to the marquee elements.</p> <p>Hspace and Vspace:<br /> This is for defining the horizontal and vertical space around the marquee. The value can be in pixels or percentage.</p> <p><strong>Question 3.</strong><br /> Explain the main attributes used with <form> tag?<br /> <strong>Answer:</strong><br /> The important attributes used with the <form> tag are method and action attributes.</p> <p>Method:<br /> The method attribute of the form tag is used to identify how the form element names and values will be sent to the server.</p> <ol> <li>The get method will append the names of the form elements and their values to the URL.</li> <li>The post method will send the names and values of the form elements as packets.</li> </ol> <p>Action:<br /> The action attribute identifies the server side program or script that will process the form. The action will be the name of a Common Gateway Interface (CGI) program written in programming languages like Perl, JavaScript, PHP or Active Server Pages (ASP).</p> <p><strong>Question 4.</strong><br /> Explain the values of <input> tag’s type attribute?<br /> <strong>Answer:</strong><br /> Attributes of <input> tag’s Type:<br /> This attribute is used define the type of control to be created by <input> tag. The values of type attribute is listed below:<br /> Value of type attribute</p> <ol> <li>Text</li> <li>Password</li> <li>Checkbox</li> <li>Reset</li> <li>Submit</li> <li>Radio Button</li> <li>Button</li> </ol> <p>Description:</p> <ul> <li>Create a Text Box. The element used to get all kind of text input such as name, address etc…</li> <li>Similar as Text box. But, while entering data, the characters are appearing as coded symbols such as asterisk.</li> <li>Check box is an element appearing like a small square box. When the user click on the square a tiny tick’mark will appear inside the square. This element is used to select multiple options.</li> <li>It is a special command button used to clear all the entries made in the form.</li> <li>It is also a special command button used to submit all the entries made in the form to the backend server.</li> <li>Radio button is used to select any one of the multiple options from the list. This element looks like a small circle, when the user select an item, a tiny dot will appear within the circle. If the user selects another option, previously selected option will be deselected. This means, user can select any one of the given option form a group.</li> <li>This is a standard graphical button on the form used to call functions on click.</li> </ul> <p><strong>Additional Questions and Answers</strong></p> <p><strong>I. Choose The Correct Answer</strong></p> <p><strong>Question 1.</strong><br /> HTML – 5 introduces ………………….. image.<br /> (a) GIF<br /> (b) JPEG<br /> (c) SVG<br /> (d) PNG<br /> <strong>Answer:</strong><br /> (c) SVG</p> <p><strong>Question 2.</strong><br /> The popular format for animated images:<br /> (a) GIF<br /> (b) JPEG<br /> (c) SVG<br /> (d) PNG<br /> <strong>Answer:</strong><br /> (a) GIF</p> <p><strong>Question 3.</strong><br /> GIF was developed by:<br /> (a) google<br /> (b) microsoft<br /> (c) sun<br /> (d) Compuserve<br /> <strong>Answer:</strong><br /> (d) Compuserve</p> <p><strong>Question 4.</strong><br /> Which format does not support animated sound and playback control?<br /> (a) GIF<br /> (b) JPEG<br /> (c) SVG<br /> (d) PNG<br /> <strong>Answer:</strong><br /> (a) GIF</p> <p><strong>Question 5.</strong><br /> Which format is suitable for photographic images?<br /> (a) GIF<br /> (b) JPEG<br /> (c) SVG<br /> (d) PNG<br /> <strong>Answer:</strong><br /> (b) JPEG</p> <p><strong>Question 6.</strong><br /> The PNG format is designed as a replacement format for:<br /> (a) GIF<br /> (b) JPEG<br /> (c) SVG<br /> (d) PNQ<br /> <strong>Answer:</strong><br /> (a) GIF</p> <p><strong>Question 7.</strong><br /> The <IMG> tag along with the attribute is:<br /> (a) src<br /> (b) width<br /> (c) height<br /> (d) vspace<br /> <strong>Answer:</strong><br /> (a) src</p> <p><strong>Question 8.</strong><br /> The default direction of the <marquee> is:<br /> (a) left<br /> (b) right<br /> (c) top<br /> (d) bottom<br /> <strong>Answer:</strong><br /> (a) left</p> <p><strong>Question 9.</strong><br /> The default value of marquee scrolls:<br /> (a) finite<br /> (b) infinite<br /> (c) 1 second<br /> (d) many seconds<br /> <strong>Answer:</strong><br /> (b) infinite</p> <p><strong>Question 10.</strong><br /> Which is referred to audio or video files are handled as part of the page?<br /> (a) inline<br /> (b) embed<br /> (c) src<br /> (d) img<br /> <strong>Answer:</strong><br /> (a) inline</p> <p><strong>Question 11.</strong><br /> …………………. tag is used to attach an audio or video file easily within webpage.<br /> (a) inline<br /> (b) embed<br /> (c) src<br /> (d) no embed<br /> <strong>Answer:</strong><br /> (b) embed</p> <p><strong>Question 12.</strong><br /> ……………………. tag is may be used as an alternate to display some other media files.<br /> (a) inline<br /> (b) embed<br /> (c) src<br /> (d) no embed<br /> <strong>Answer:</strong></p> <p><strong>Question 13.</strong><br /> What is the primary attribute used with <cke:embed></cke:embed> tag?<br /> (a) inline<br /> (b) embed<br /> (c) src<br /> (d) no embed<br /> <strong>Answer:</strong><br /> (d) no embed</p> <p><strong>Question 14.</strong><br /> What is the special element of the form in html?<br /> (a) Name<br /> (b) Submit<br /> (c) Text<br /> (d) Box<br /> <strong>Answer:</strong><br /> (b) Submit</p> <p><strong>Question 15.</strong><br /> What is the method will append the names of the form elements and their values?<br /> (a) Form<br /> (b) Get<br /> (c) Post<br /> (d) Action<br /> <strong>Answer:</strong><br /> (b) Get</p> <p><strong>Question 16.</strong><br /> What method will send the names and values of the form elements as packets?<br /> (a) Form<br /> (b) Get<br /> (c) Post<br /> (d) Action<br /> <strong>Answer:</strong><br /> (c) Post</p> <p><strong>Question 17.</strong><br /> What is the special command button used to clear all the entries made in the form?<br /> (a) Reset<br /> (b) Submit<br /> (c) Button<br /> (d) Text<br /> <strong>Answer:</strong><br /> (a) Reset</p> <p><strong>Question 18.</strong><br /> What is the standard graphical button on the form used to call function?<br /> (a) Reset<br /> (b) Submit<br /> (c) Button<br /> (d) Text<br /> <strong>Answer:</strong><br /> (c) Button</p> <p><strong>Question 19.</strong><br /> Which tag is used to receive multiline text data as input?<br /> (a) <form><br /> (b) <submit><br /> (c) <textarea><br /> (d) <inline><br /> <strong>Answer:</strong><br /> (c) <textarea></p> <p><strong>II. Answer The Following Questions</strong></p> <p><strong>Question 1.</strong><br /> How can you inserts images with html document?<br /> <strong>Answer:</strong><br /> The <IMG> tag along with the attribute src (Source) is used to add images in HTML document.</p> <p>General format:<br /> <img data-cke-saved-src = image_name_with_ src = image_name_with_ extension><br /> (or)<br /> <img data-cke-saved-src = URL src = URL><br /> Eg:<br /> <img data-cke-saved-src = imagel.gif src = imagel.gif></p> <p><strong>Question 2.</strong><br /> How can you use the Alt attribute of <img>?<br /> <strong>Answer:</strong><br /> Alt (Alternative Text):<br /> The alt attribute within <img> tag is used to describe the image, so that some text is conveyed even when the image cannot be displayed.<br /> Eg:<br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif alt = “National Poet of India”></p> <p><strong>Question 3.</strong><br /> What is the use of width and height attributes?<br /> <strong>Answer:</strong><br /> Width and Height attributes are used to set the width and height of an image. The values of these attributes should be either pixels or percentage of its actual size.</p> <p>If these attributes are not specified, the browser displays the image in its original size.<br /> Vspace (Vertical space) and<br /> Hspace (Horizontal space)</p> <p><strong>Question 4.</strong><br /> What is the use of <cke:embed></cke:embed> ta| and <no embed> tag?<br /> <strong>Answer:</strong><br /> The <cke:embed></cke:embed> tag is used to attach an audio or video file easily within webpage. This tag includes the controls of the multimedia automatically in the browser. The <noembed> tag may be used as an alternate to display some other media file, in the case of the browser does not support <cke:embed></cke:embed> tag.</p> <p><strong>Question 5.</strong><br /> What is the use of src attribute?<br /> <strong>Answer:</strong><br /> Src is the primary attribute used with <cke:embed></cke:embed> tag. The src attribute used to specify the name of the media file with its source location. Other attributes such as alt, height, width and align are used as it is used with <img>.</p> <p><strong>Question 6.</strong><br /> What is the use of <form> tag?<br /> <strong>Answer:</strong><br /> The <form> tag is used to create a form. An HTML from starts with <form> and ends with </form> tag. Forms contain many types of form elements, such as text boxes, radio buttons, check boxes, buttons and drop-down lists.</p> <p><strong>Question 7.</strong><br /> What are the different types of form controls?<br /> <strong>Answer:</strong><br /> In HTML, there are different types of form controls are used to collect data. They are Text box, Password, Checkbox, Radio buttons, Text area, Select box, Submit and Reset Button.</p> <p><strong>III. Answer The Following Questions</strong></p> <p><strong>Question 1.</strong><br /> What are the align attributes used to align the image?<br /> <strong>Answer:</strong><br /> The align attribute used to aligns the image with respect to the base line of the text. This attribute has the following values.</p> <ol> <li>Bottom – Aligns the bottom of the image with the baseline of the text. This is the default setting.</li> <li>Middle – Aligns the middle of the image with the baseline of the text.</li> <li>Top – Aligns the top of the image with the baseline of the text.</li> </ol> <p><strong>Question 2.</strong><br /> How can you define the background music attribute?<br /> <strong>Answer:</strong><br /> Music can be played in the background to a webpage, while the page is viewed. This is known as ‘inline’ sound or movie. The <bgsound> tag is used to attach an inline sound file in HTML.</p> <p>The src attribute is used to define the location of the media file. Volume attribute used to adjust volume control. The loop attribute defines the duration of play. The ‘infinite’ value causes the audio play as j long as the page is in view.</p> <p><strong>Question 3.</strong><br /> Explain the forms attribute submit and name?<br /> <strong>Answer:</strong><br /> The form has a special element, which is submit button, which will submit the entries of a form to a server application to process the entries. Each element in the form is assigned a name using the name attribute.</p> <p>Users enter values into the text boxes, or make selections from the radio buttons* check boxes, and drop down lists. The values they enter or select are passed with the name of the corresponding form element to the Web server.</p> <p><strong>Question 4.</strong><br /> Write the html code to insert an inline image?<br /> <strong>Answer:</strong><br /> <cke:html><br /> <cke:head><br /> <cke:title> Inserting Images </cke:title><br /> </cke:head><br /> <cke:body><br /> <hl align = center><br /> Bharathiyar </hl><br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif><br /> </cke:body><br /> </cke:html></p> <p><strong>Question 5.</strong><br /> Write the html code using marquee tag?<br /> <strong>Answer:</strong><br /> <cke:html><br /> <cke:head><br /> <cke:title> Marquee </cke:title><br /> </cke:head><br /> <cke:body><br /> <marquee> <b> The Government of Tamilnadu </b>,<br /> Directorate of School<br /> Education </marquee><br /> <marquee direction=right><br /> Welcome to <b> The State Council of Educational Research and Training </b>, Tamilnadu </marquee><br /> </cke:body><br /> </cke:html></p> <p><strong>IV. Answer The Following Questions</strong></p> <p><strong>Question 1.</strong><br /> Write the html code using <img> attributes?<br /> <strong>Answer:</strong><br /> <cke:html><br /> <cke:head><br /> <cke:title> Inserting Images </cke:title><br /> </cke:head><br /> <cke:body><br /> <h1 align = center> Mahakavi Bharathi </h1><br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif alt = “National Poet of India”<br /> Width = 20% Height = 25% vpace = 20 Hspace = 20><br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif alt = “National Poet of India”<br /> Width = 20% Height = 25% vpace = 20 Hspace = 20><br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif alt = “National Poet of India”<br /> Width = 20% Height = 25% vpace = 20 Hspace = 20> <br><br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif alt = “National Poet of India”<br /> Width = 20% Height = 25% vpace = 20 Hspace = 20><br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif alt = “National Poet of India”<br /> Width = 20% Height = 25% vpace = 20 Hspace = 20><br /> <img data-cke-saved-src = bharathiyar.gif src = bharathiyar.gif alt = “National Poet of India”<br /> Width =20% Height = 25% vpace = 20 Hspace = 20> <br><br /> </cke:body><br /> </cke:html></p> <p><strong>Question 2.</strong><br /> Write the html code to adding audio and video files?<br /> <strong>Answer:</strong><br /> <cke:html><br /> <cke:head><br /> <cke:title> Adding Multimedia Files </cke:title><br /> </cke:head><br /> <cke:body><br /> <img data-cke-saved-src=”D:\Images\TN_Logo.png” src=”D:\Images\TN_Logo.png” alt=”Govt. of Tamilnadu Logo” height=25% width=15%><br /> <marquee> Welcome to <b> The State Council of Educational Research and Training </b>, Tamilnadu </marquee><br /> <cke:embed src=”D:\CS_Videos\CS_Video.mp4″ width=50% height=50%> </cke:embed> </cke:body><br /> </cke:html></p> <p><strong>Question 3.</strong><br /> Write the html code to form and form controls?<br /> <strong>Answer:</strong><br /> <cke:html><br /> <cke:head><br /> <cke:title> Login Form </cke:title><br /> <cke:body><br /> <h3 align=center> TamilNadu State Council of Educational Research<br /> and Training, Chennai </h3><br /> <Form Action =”mailto:abed.xyz0com” method=post><br /> <p> User Name:<br /> cinput type = text name=”user_name” size = 20 maxlength = 15> </p><br /> <p> Password:<br /> <Input type = password data-cke-saved-name=”pass” name=”pass” size = 20 maxlength = 15> </p><br /> <Input type = reset value =”Clear”><br /> <Input type = submit value =”Login”><br /> </Form><br /> </cke:body><br /> </cke:html></p>

Also Read : Text-Book-Back-Questions-and-Answers-Chapter-13-CSS–Cascading-Style-Sheets-11th-Computer-Application-Guide-Samacheer-Kalvi-Solutions

SaraNextGen