........... is compulsory part of HTML.
A) <br>
B) <body>
C) <tr>
D) <img>

1 Answer

Answer :

B) <body>

Related questions

Description : ............... is a standalone tag. A) B) C) D)

Last Answer : A)

Description : PC can be loaded from. a. BR b. CR c. AR d. TR

Last Answer : c. AR

Description : Which field is used to requests for branching: a. DR b. CR c. TR d BR

Last Answer : d BR

Description : ............. tag is used to embed image in a webpage. A) B) C) D) None of the above

Last Answer : A)

Description : The command which transcribes the standard input to the standard output and also makes a copy of the same in a file is A. tee B. tr C. sort D. grep E. None of the above

Last Answer : A. tee

Description : Unix command to change the case of first three lines of file “shortlist” from lower to upper (1) $ tr ‘[a-z]’ ‘[A-Z]’ shortlist | head-3 (2) $ head-3 shortlist | tr ‘[a-z]’ ‘[A-Z]’ (3) $ tr head-3 shortlist ‘[A-Z]’ ‘[a-z]’ (4) $ tr shortlist head-3 ‘[a-z]’ ‘[A-Z]’

Last Answer : (2) $ head-3 shortlist | tr ‘[a-z]’ ‘[A-Z]’ 

Description : The correct HTML code for inserting an image is (a) -Technology

Last Answer : (c)

Description : HTML tag for row is (a) (b) -Technology

Last Answer : (b) HTML tag for row is .

Description : What is the use of tag in an HTML table? Give a suitable example. -Technology

Last Answer : The tag creates a table row in an HTML table. A table must have atleast one row and also, it can have as many table rows as you want. A table row is divided into table cells. A table must have atleast one table cell per table row.e.g.CheadXtitle> TR Tag

Description : Why do you write ‘Integer.parseInt(br.readLine())’?

Last Answer : A: The inputs in a java program comes in the form of String objects which are read using the br.readLine() function. Now if we want the input in integer form, we have to convert it into integer using the parseInt() function of the Integer wrapper class.

Description : Is it compulsory to write String args[] when running a program in BlueJ?

Last Answer : A: No it is not compulsory when we are running it in BlueJ. But normally (in all other cases) it is always better to have it, as the JVM looks for the main method with a String array as a parameter.

Description : Why do you write BufferedReader br = new ……. ?

Last Answer : A: To activate the Buffer memory for efficient input and output operations. ‘br’ is an object of the BufferedReader class.

Description : Which is not a typical program control instruction? (A) BR (B) JMP (C) SHL (D) TST

Last Answer : (C) SHL

Description : Write the expansions of the following tags used in HTML. 1. -Technology

Last Answer : 1. — Break line2. — Italic3. – Horizontal Rule4. — Underline

Description : Write the purpose of HTML. Distinguish between tag and tag. -Technology

Last Answer : HTML is used to represent page, data on website with proper manner and attractive look to get maximum users.Difference between tag and tagtag is a block level element, and is mainly used to add content, whereas the tag is used to force a line break within the element.

Description : Content: and tags in HTML Of two The end Tags To write Is No. Why ?

Last Answer : and tags Of two The end Tags To write Is No. Because - all this Of the tag No The end Tags Stays No. And These No Element too Stays No. and tags Two Empty (empty) tag too Says

Description : ...............tag is an extension to HTML that can enclose any number of Javascript statements. (A)< SCRIPT> (B)< BODY> (C)< HEAD> (D)

Last Answer : Answer: A

Description : JSP embeds in ................ in ...................... A) Servlet, HTML B) HTML, Java C) HTML, Servlet D) Java, HTML

Last Answer : D) Java, HTML

Description : ………………. is not an operation performed on linear list Get More Mcqs from http://www.siteforinfotech.com/p/mcqs.html a) Insertion b) Deletion c) Retrieval d) Traversal A) only a,b and c B) only a and b C) All of the above D) None of the above

Last Answer : D) None of the above

Description : HTML stands for A) Hypertext Mass up language B) Hypertext Markup language C) Hypertext Move up language D) Hypertext Mark of language

Last Answer : B) Hypertext Markup language

Description : Maximum font size in HTML is ........... A) 6 B) 7 C) 5 D) 8

Last Answer : B) 7

Description : The document that is used by XSLT to indicate, how to transform the elements of the XML document to another format is (A) HTML page (B) DOC type procedure (C) Style sheet (D) Stored procedure

Last Answer : (C) Style sheet

Description : Which of the following statements is not correct? (A) HTML is not screen precise formatting language. (B) HTML does not specify a logic. (C) DHTML is used for developing highly interactive web pages. (D) HTML is a programming language.

Last Answer : (D) HTML is a programming language.

Description : border, frame, cellspacing, cellpadding, align are the attributes of (a) tag (b) tag -Technology

Last Answer : (c) border, frame, cellspacing, cellpadding, align are the attributes of tag.

Description : Background is an attribute of : (i) tag (ii) tag (iii) tag (iv) tag -Technology

Last Answer : Background is an attribute of tag

Description : Which of these tags belong to table? (a) ,, -Technology

Last Answer : (c),,, tags are used with table.

Description : Which of these are all table tags? (a) ,, (b) , , (c) , (d) , , -Technology

Last Answer : , ,are all table tags.

Description : Putting an in a is ok, right?

Last Answer : The tag is usually used to apply a certain cascading style on more than on a group of elements together. For example, you can assign the font color to be red and then using the span element to ... image together within that element so that they carry the same width, height, margin, padding.. etc.

Description : attribute question.

Last Answer : answer:Usually you use the align attribute set to middle . There is an unofficial value absmiddle which works more the way you'd expect middle to (exactly centers it to the current line of text) but some might ... way to do it but I'd have to test it out to be sure. p { line-height: 40px; }

Description : Write the full form of the following tags: 1. 2. -Technology

Last Answer : 1. -List item2. -Image

Description : Describe the use of alt attribute with tag. -Technology

Last Answer : The alt attribute is used to define alternate text' for an image. It tells the Website visitor, what he/she is missing on the page if the browser cannot load images. The browser will then ... include alt attribute for each image on a page to improve the appearance and usefulness of the document.

Description : Name the values that can be assigned to align attribute of tag. -Technology

Last Answer : The values that can be assigned to align attribute of tag are as follows:1. top2. bottom3. left4. right5. middle

Description : Define height and width attributes of tag. -Technology

Last Answer : The width and height attributes tell the dimension of an image to the browser. Both (height and width) attributes require integer values (dimension of the image in terms of either pixels or percentage of its actual size).

Description : Explain various attributes of tag. -Technology

Last Answer : Attributes of TagAn attribute is an extra piece of information associated with a tag that provides further details about the tag.Following are the various attributes of tag:The src Attribute: The src (source) ... the width of the border around an image. By default, an image has no border in HTML.

Description : Which attribute is used to specify the location of an image file in the tag? Explain. -Technology

Last Answer : The attribute you need to get an image to display on a Web page is the src attribute.In the src attribute of the tag, you can specify the path of the image that you want to add to the ... image somewhere else on the same server, or an image stored on another server.The syntax for src attribute is

Description : src attribute used with tag stands for (a) screen (b) screen resolution count (c) source -Technology

Last Answer : The correct answer is(c) source

Description : The alternate text of an image can be displayed by using attribute of the tag. (a) src (b) alt -Technology

Last Answer : (b) alt attribute of the tag is used to display the alternate text of an image.

Description : Which is not a valid value in the align attribute of tag? (a) top (b) center -Technology

Last Answer : (b) center is not a valid value in the align attribute of tag. To align in center, tag can be used.

Description : Why is it important to specify width and height attribute in tag? -Technology

Last Answer : (d) Helps the browser to load the Web page faster.

Description : The tag is an ………… tag, that means it has no closing tag. -Technology

Last Answer : The tag is an emptytag, that means it has no closing tag.

Description : tag is used for …………. images. -Technology

Last Answer : tag is used for displaying images.

Description : ……………. is an attribute of the tag which specifies the location or URL of the image to be displayed. -Technology

Last Answer : src is an attribute of the tag which specifies the location or URL of the image to be displayed.

Description : No value is specified with alt attribute of tag. -Technology

Last Answer : False alt attribute provides alternate text for an image if the image is not visible on Web page for any reason.

Description : The general syntax for inline image is . -Technology

Last Answer : True At the place of the file name, the path of the image is specified. If the image is in the same folder as HTML file, it is not needed to specify the full path of an image.

Description : The align attribute of the tag is used to specify the text that is to be displayed -Technology

Last Answer : False alt attribute is used to specify the text that is to be displayed in case the browser which does not support graphics.

Description : The two common attributes of the and the tag are (a) src and height (b) height and width -Technology

Last Answer : (b) height and width are common attributes of the tag and the tag.

Description : Write any two attributes for each tag: (a) (b) (c) -Technology

Last Answer : img tag-src, alt, height, widthtable tag - align, bgcolor, border, cellpadding, cellspacinga tag -href, name

Description : What is the purpose of tag ? Mention it’s any two attributes along with their purpose. -Technology

Last Answer : tag is used to insert images in any webpage.Its two main attributes are as follows:SRC : It specifies the URL of the image.ALT : It specifies an alternate text for an image.

Description : HOW DO I CONVERT IMG TO JPEG ?

Last Answer : Need Answer

Description : Is Alrey Handrich an Img Model?

Last Answer : yes