CBSE - MCQ Question Banks (के. मा. शि. बो . -प्रश्नमाला )

PreviousNext

Q. 194101 The length of an attribute value is limited to


A. 1024 characters.

B. 1125 characters.

C. 1124 characters.

D. 1025 characters.

Right Answer is: A

SOLUTION

An attribute provides additional information about the element. The length of an attribute value is limited to 1024 characters.


Q. 194102 The attribute that sets the background graphics of body tag is known as


A. bgcolor.

B. background.

C. body.

D. graphics.

Right Answer is: B

SOLUTION

The background color is set by bgcolor attribute and background graphics is set by background attribute of the body tag.


Q. 194103 The maximum characters that a title can have is


A. 72.

B. 69.

C. 23.

D. 64.

Right Answer is: D

SOLUTION

The title element contains your document title and identifies its content in a global context.


Q. 194104 The correct HTML for creating a hyperlink is


A. < a name= “http://www.extramarks.com” >Extramarks.com< /a >.

B. < a >http://www.extramarks.com< /a >.

C. < a url=”http://www.extramarks.com” >Extramarks.com < /a >.

D. < a href= http://www.extramarks.com” >Extramarks< /a >.

Right Answer is: D

SOLUTION

Hyperlinks can point to any resource on the web: an HTML page, an image, a sound file, a movie etc. The href attribute defines the link "address".


Q. 194105 The < hr > tag is used inside


A. < head >.

B. < title >.

C. < body >.

D. < footer >.

Right Answer is: C

SOLUTION

The horizontal rules give a way to separate sections of your document visually. The < hr > tag produces a horizontal line spread across the width of the browser window. The < hr > tag is used inside the body content. For example, < html > < head >< title > Horizontal rule < /title >< /head >< body >< hr size = 14 >< /body >< /html >


Q. 194106 To define the basic font size, the tag used is known as


A. font.

B. size.

C. basefont.

D. face.

Right Answer is: C

SOLUTION

The < basefont > tag defines the basic size for the font; the browser will use to render normal document text, i.e., the text for which no other font-size setting has been provided.


Q. 194107 The Web standards are made by


A. World Wide Web Consortium.

B. Mozilla.

C. Microsoft.

D. Internet Explorer.

Right Answer is: A

SOLUTION

The World Wide Web brings the documents, images, graphics, music, videos etc. to our desktop. Everything we see on the desktop, are the documents written in a special language called HTML.


Q. 194108 The < center > tag is a/an


A. container element.

B. empty tag.

C. attribute used inside footer section.

D. attribute used inside title section.

Right Answer is: A

SOLUTION

The container elements are those elements that require pair tags, i.e., a starting as well as an ending tag. For example, < title >… < /title >, < head >…< /head >, etc.


Q. 194109 The text style that renders the text according to its meaning is known as


A. abstract text style.

B. logical text style.

C. physical text style.

D. virtual text style.

Right Answer is: B

SOLUTION

Logical text styles are general descriptions. Each browser handles a logical style in its own way. These styles render the text according to its meaning. For example, < strong > is for strongly emphasizing something.


Q. 194110 In the < hr > tag, the default rule is


A. 1-D.

B. 2-D.

C. 3-D.

D. noshade.

Right Answer is: C

SOLUTION

Without noshade attribute in < hr >, the default 3-D rule is displayed and with noshade attribute a 2-D rule is displayed.


Q. 194111 The element that only has a starting tag and not an ending tag is


A. < html >.

B. < p >.

C. < br >.

D. < head >.

Right Answer is: C

SOLUTION

The empty elements are those that require just a starting tag and not an ending tag. For example, < br >. These elements just carry out their specific job. For example, < br > breaks a line.


Q. 194112 The two types of styles for individual words or sentences are


A. outer and inner.

B. logical and abstract.

C. logical and physical.

D. abstract and physical.

Right Answer is: C

SOLUTION

Logical styles are general descriptions. They render the text according to its meaning. For example,< strong > for strongly emphasizing on something. Physical text styles indicate the specific type of appearance for a section. For example, italics, bold etc. They are rendered in the same manner by all browsers.


Q. 194113 ALINK refers to


A. audio links.

B. array links.

C. activity links.

D. active links.

Right Answer is: D

SOLUTION

The color or text links can be changed by LINK attribute. The two types of links are visited links and active links. VLINK refers to visited links and ALINK refers to active links. Active links are the links that are currently being clicked on.


Q. 194114 The html container tag that should be applied to the text to format it to a paragraph is


A. < paragraph > < /paragraph >.

B. < p > < /p >.

C. < format style = “para” > < /format >.

D. < para > < /para >.

Right Answer is: B

SOLUTION

The < p > tag defines a paragraph. For example, < p >. This is a text in a paragraph. < /p >. The text that is typed between < p > and < /p > tags is by default left-aligned. To change its alignment, ALIGN attribute of < p > tag can be used. For example, < p align = left >.


Q. 194115 Arun wants the caption to be displayed in his browser’s window. The html tag that he should use is


A. < head >.

B. < title >.

C. < caption >.

D. < p >.

Right Answer is: B

SOLUTION

The text between the < title > tags is the title of your document. The title is displayed in your browser’s caption.


Q. 194116 The tag that is an example of physical text style is


A. typewriter text < TT >.

B. emphasis < EM >.

C. computer code < CODE >.

D. keyboard entry < KBD >.

Right Answer is: A

SOLUTION

Physical text styles indicate the specific type of appearance for a section. For example, bold< b >, italics < i > etc.


Q. 194117 The proper syntax to start an HTML comment is


A. < !- - - This is a comment - - - >.

B. < ! >.

C. < comment >.

D. < notate >.

Right Answer is: A

SOLUTION

Comments are one type of textual content that appear in the HTML code but are not rendered by user’s browser. Comments are given between special < ! - - - and - - - > markup elements.


Q. 194118 An example of a container element is


A. < html > < /html >.

B. < br >.

C. < base >.

D. < basefont >.

Right Answer is: A

SOLUTION

The two types of elements used in html are container elements and empty elements. Container elements are those that require a starting as well as ending tags. For example, < title >…< /title >, < head >…< /head >.


Q. 194119 The heading tag that will cause a browser to display text in the largest size is


A. < h3 >.

B. < h1 >.

C. < h5 >.

D. < h4 >.

Right Answer is: B

SOLUTION

HTML has six levels of headings, marked by the element names H1, H2, …., H6. < h6 > is used to mark the smallest heading. < h1 > is used to mark the main document.


Q. 194120 The elements that require a starting tag and not an ending tag is known as


A. enclosed elements.

B. container elements.

C. conditional elements.

D. empty elements.

Right Answer is: D

SOLUTION

Empty elements just require a starting tag and not an ending tag. For example, < hr > inserts a horizontal line, < br > breaks a line.


Q. 194121 The elements that require a starting as well as ending tags is known as


A. empty elements.

B. enclosed elements.

C. container elements.

D. conditional elements.

Right Answer is: C

SOLUTION

The two types of elements used in html are container elements and empty elements. Container elements are those that require a starting as well as ending tags. For example, < title >…< /title >, < head >…< /head >.


Q. 194122 The html tag used to display the text in the browser’s window is


A. < br/ >.

B. < head >.

C. < title >.

D. < body >.

Right Answer is: D

SOLUTION

The < body > tag encloses all the tags, attributes and information to be displayed in the web page. The < body > tag is entered below the closing < head > tag and above the closing < html > tag.


Q. 194123 HTML tag that is applied to attributes to modify text size, font size, font-face and color is


A. < font >.

B. < mod >.

C. < f >.

D. < text >.

Right Answer is: A

SOLUTION

The font tag lets you change the size, color and typeface of text. The font tag sets the font size for the text. Its attributes are size, face and color.


Q. 194124 To create your HTML code, we use


A. Notepad.

B. MS Word.

C. MS Excel.

D. Power point.

Right Answer is: A

SOLUTION

To create an HTML document we can use a text editor like notepad or gedit. We can open the text editor by clicking on Start > Programs > Accessories>Notepad.


Q. 194125 The correct use of the < title > tag is


A. < title = “Web Designer Help” > < /title >.

B. < title = Web Designer Help/ >.

C. < title = “Web Designer Help”/title >.

D. < title > Web Designer Help < /title >.

Right Answer is: D

SOLUTION

The title tag is used to define the document title. It contains plain text. It is used inside < head >…< /head > tags.


Q. 194126 Tag used to define a paragraph is


A. < para >.

B. < p >.

C. < pg >.

D. < pgraph >.

Right Answer is: B

SOLUTION

< p > tag is used for defining a paragraph. < P > marks beginning of the paragraph. < /P > marks end of the paragraph.


Q. 194127 The correct tag for the largest heading is


A. < h6 >.

B. < h2 >.

C. < h3 >.

D. < h1 >.

Right Answer is: D

SOLUTION

HTML has six levels of headings, marked by the element names H1, H2, …., H6. < h6 > is used to mark the smallest heading. < h1 > is used to mark the main document.


Q. 194128 The correct HTML for creating a hyperlink is


A. < a url= “http://www.webdesignerhelp” >Web Designer Help .

B. < link= “http://www.webdesignerhelp /” >Web Designer Help < / a>.

C. < a link= “http://www.webdesignerhelp ” >Web Designer Help < / a>.

D. < a href=”http://www.webdesignerhelp”>Web Designer Help .

Right Answer is: D

SOLUTION

A hyperlink is a reference (an address) to a resource on the web. Hyperlinks can point to any resource on the web: an HTML page, an image, sound file etc. The syntax for an HTML Link is: < a href=”url” > Link Text < /a >.


Q. 194129 The correct tag for the smallest heading


A. < h6 >.

B. < h7 >.

C. < small >.

D. < h1 >.

Right Answer is: A

SOLUTION

HTML has six levels of headings, marked by the element names H1, H2, …., H6. < h1 > is used to mark the main document. < h6 > is used to mark the smallest heading.


Q. 194130 Tag commonly use to link between pages is


A. “ lINK ”

B. “ aNCHOR ”

C. “ hYPERLINK ”

D. “ a ”

Right Answer is: D

SOLUTION

“ a ” stands for anchor. It can also be used to name a vertical position on a page and link to it from another part of the page, e.g., with a “ back to top ” link.


Q. 194131 For header information, we use


A. < header > tag.

B. < heading > tag.

C. < h1 > tag.

D. < head > tag.

Right Answer is: D

SOLUTION

The text between the < head > tag and the < /head > tag is the header information. Header information is not displayed in the browser window.


Q. 194132 VLINK refers to


A. Virtual links.

B. Visited links.

C. Visual links.

D. Video links.

Right Answer is: B

SOLUTION

The color or text links can be changed by LINK attribute. The two types of links are visited links and active links. VLINK refers to visited links and ALINK


Q. 194133 Anurag wants that the top margin of his document should be set to 60. The correct format that should be used by him is


A. < topmargin = 60 >.

B. < margin = top, 60 >.

C. < body margin = top, 60 >.

D. < body topmargin = “60” >.

Right Answer is: D

SOLUTION

To set the top margin, i.e., the distance from the top edge, TOPMARGIN attribute should be used. This will make the body-text appear 60 pixels away from top edge of the page.


Q. 194134 USENET is a


A. set of tools reserved exclusively for Internet administrators.

B. short for United States Electronic Network.

C. bulletin board system that allows for posting and responding to messages on the Internet.

D. precursor to the Internet that is now obsolete.

Right Answer is: C

SOLUTION

Usenet is a worldwide distributed Internet discussion system. It is an online bulletin board system. Usenet users can post messages to newsgroups that can be read (and replied to) by anyone who has access to the system through a newsreader.


Q. 194135 An online community bulletin board, where users can post messages, respond to posted messages or just read them is


A. Newsgroups.

B. Videoconferencing.

C. Telnet.

D. Chat groups.

Right Answer is: A

SOLUTION

A newsgroup is a continuous public discussion about a particular topic. A newsgroup is like an electronic public notice board on a particular subject. Anyone can post a message or read a message. Newsgroups provide a way to communicate with people who share same interests from all over the world.


Q. 194136 Web addresses can be written as words or as numbers. For example: www.extramarks.com might have an address number of 64.161.54.0, these numbers are called


A. Internet Protocol (IP) Address.

B. nothing web addresses can't be accessed by numbers.

C. File Transfer Protocol (FTP) Address.

D. Uniform Resource Locator (URL) Number.

Right Answer is: A

SOLUTION

An IP address is actually made up of numbers. Words are used to point those numbers that make web addresses easier to remember.


Q. 194137 A markup language is


A. numbers that respond to a browser's request for a Web page.

B. a combination of letters and numbers that make up the address displayed on the top of the browser.

C. a computer language that describes how text should be formatted on browser.

D. a language that marks unformatted text.

Right Answer is: C

SOLUTION

A markup language is a specific language standard that allows browser to know, how to display a set of text, images and animation, whether or not a paragraph needs to be centered or right-aligned, where to place a certain photo and so on. Hypertext Markup Language (HTML) is the most commonly used type of markup language for Web pages.


Q. 194138 A Web server is


A. a special code that tells a browser how to display text.

B. a software that responds to a browser's request.

C. a human that keeps up with Web surfer’s constant demands by manually sending Web sites back to browsers.

D. WWW client that navigates through web.

Right Answer is: B

SOLUTION

A Web server is a piece of software that responds to a browsers request for a certain page and delivers the appropriate information.


Q. 194139 Web Browser is used to access the Internet services and resources available through the World Wide Web, is basically a


A. software.

B. program.

C. operating system.

D. network server.

Right Answer is: B

SOLUTION

A web browser is a computer program (software) that is used for viewing web sites and web pages.


Q. 194140 The process of a computer receiving information, such as a Web page, from a server on the Internet is


A. streaming.

B. downloading.

C. flowing.

D. uploading.

Right Answer is: B

SOLUTION

To receive a copy of a file from another computer or web server using a modem is known as download. Downloading refers to the transfer of data from a central system to a smaller system. For example, the same files uploaded to the server above might be downloaded for viewing by another user.


Q. 194141 For uploading single file on an FTP site, we use the command


A. get.

B. input.

C. put.

D. set.

Right Answer is: C

SOLUTION

For uploading files over the FTP site, we must have proper permission (Login-id and password) and for uploading a single file, we use put command       ftp>put for uploading multiple files we use mput command        ftp>mput


Q. 194142 To connect to an FTP site using a browser, use a URL in the form of


A. http:// em.mits.edu

B. ftp:///em.mits.edu

C. ftp://em.mits.edu

D. ftp//em.mits.edu

Right Answer is: C

SOLUTION

The main format for locating a site by URL is type://address/path where,
1) type: specifies the type of server which we are accessing 
2) address is the address of the server 
3) path tells the location of the file on the server and on which we are accessing the FTP server.


Q. 194143 An Internet standard that permits file uploading and downloading with other computers on the Internet is


A. Telnet.

B. FTP.

C. IM.

D. Webcasting.

Right Answer is: B

SOLUTION

FTP or File Transfer Protocol is a standard that allows users to transfer files from one computer to another using a modem and telephone lines. Like HTTP, FTP is a protocol that provides a way of uploading and downloading files.


Q. 194144 In an email address, what does characters following ‘@’ represents?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

In an email address, the characters following ‘@’ represents domain name, which identifies the server that services our email.


Q. 194145 What do you mean by Web browser?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Web Browser is a software that navigates through World Wide Web and display web pages.


Q. 194146 What are other names of spiders?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

The spiders are also called webcrawler or Robot and even agent sometimes.


Q. 194147 How are e-emotions expressed?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

The e-emotions can be expressed using symbols called emoticons or smiley.


Q. 194148 What is Usenet.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

The online worldwide conversation is known as usenet.


Q. 194149 Name parts of email address.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

An email address has two parts: user and domain name separated by @ ( ‘at’ ) symbol.


Q. 194150 What is Telnet?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Telnet is an Internet utility that allows to log onto remote computer systems.


Q. 194151 Define downloading.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Downloading refers to transfer of files from server to the computer.


Q. 194152 What do you understand by video conferencing?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

A two way videophone conversation among multiple participants is called video conferencing.


Q. 194153 What is the use of spider software?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

The search engine uses a software called spider. Spiders are used to feed pages to search engines. It is called a spider because it crawls over the Web.


Q. 194154 What are newsgroups?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Newsgroups are Internet discussion forums where groups of users with common interests gather to talk about everything from software to comic books to politics.


Q. 194155 What is Chatting? Is it necessary to be online while chatting?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Chat is online textual conversation wherein the message typed by the sender is instantly made available to the recipient and vice versa. Yes to do chatting , we need to be online.


Q. 194156 Write the advantages of e-learning.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

The advantages of e-learning are: 
• Travel time and associated costs (parking, fuel and vehicle maintenance) are reduced or eliminated. 
• Learning is self-paced and gives students a chance to speed up or slow down as necessary. 
• Accommodates multiple learning styles using a variety of delivery methods geared to different learners, more effective for certain learners. 
• e-learning online sessions are especially easy to keep up-to-date as the updated materials are simply uploaded to a server. 
• Create an interactive online environment – story-telling, demonstrations, role-playing, online references, discussion groups, bulletin boards, FAQs etc. 
• Allows learners to skip material they already know and can move on next which needs to be learned.


Q. 194157 What is Internet banking?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

In Internet banking, customers can access their accounts from a browser. The software (Internet banking programs) runs on the bank’s server (World Wide Web), not on the user’s PC. Internet banking generally has lower operational costs.


Q. 194158 What is e-reservation?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Making reservations of tickets/hotels/tourist packages etc. through Internet is known as e-reservation.

For example, www.irctc.co.in is the address of Indian Railways from where you can check availability of seats, book tickets for various trains.


Q. 194159 What are the dangers associated with social networking?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Some of the dangers associated with social networking are: 
• Data theft and virus attack. 
• Online predators, who claim to be someone else, can create problems. 
• Cyber blackmailing may take place.


Q. 194160 Write the two features of blog.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Blog features are useful for the blogger and the readers. The two features of blog are: 
(1) Archives - These include the list of all blog posts that have been published since the blog was launched. So, it makes possible to get previous posts/entries. 
(2) Comments – This feature allows readers to post their feedbacks/remarks for the blog content.


Q. 194161 What are the advantages of internet banking?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

The advantages of internet banking are: 
• Internet banking costs less. 
• Bouncing of cheque has become a thing of past. 
• You can monitor your account online any time. 
• You can keep your account balanced. 
• With the ability to view your account anytime, it is easier to catch any fraudulent activity in your account before much damage is done.


Q. 194162 Mr. Lal wants to take his family out for a vacation. He wants to book a hotel for 5 days in Shimla. Is there any service through which he can book a hotel room without leaving his place?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Yes, Mr. Lal can do this by using e-reservation service. There are numerous sites that offer e-reservation facilities for different hotels, tourist packages etc. Through these sites, Mr. Lal can determine the availability of hotel rooms alongwith attractive discount schemes without leaving his place. Some of these sites are yatra.com, makemytrip.com etc.


Q. 194163 Explain the process of PC Banking?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

PC Banking enables customers to execute bank transactions from a PC via a modem. Bank offers proprietary financial software to the customers. This allows a customer to perform financial transactions from his or her home computer. The customer then dials the bank with his or her modem, downloads data and runs the programs that are present on the customer’s computer.


Q. 194164 Write reasons for growing popularity of e-shopping.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

The reasons for growing popularity of e-shopping are: 
• It allows consumers to shop at their convenience and saves their travelling time to retail stores. 
• Consumers are freed from the pressure to buy from vendors. They can spend more time to make purchase decisions. 
• Infinite variety of products is available online and it allows consumers to browse the products without geographical boundaries. 
• Consumers can compare product prices and features to make a better decision with less effort.


Q. 194165 If we are running an FTP session on a web browser, then by default we are logged in as anonymous user. If we want to login as a different user, then what will you do.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

To login as different user:
a) Click File -> Login As  command
b) In the dialog box displayed, enter the login-id and password and then click at Login button.
Through this way, we are the authorized user now and can download and upload files easily by same processes.


Q. 194166 How can we use e-mail account provided by the ISP. What process will be followed to fetch and read mails?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

For this purpose we need to use an e-mail client software like “Outlook Express”.
a) Start the Outlook Express by clicking at start -> Programs -> Outlook Express. 
b) Now we need to configure it by using commands Tools -> accounts -> mails -> Add -> Mail and then by specifying the details provided to you (your POP3 server, SMTP server etc.) by your ISP.
c) After configuring Outlook express, to view e-mails just start Outlook Express as Start->Programs->Outlook Express.
Then go to the INBOX folder by clicking over it.


Q. 194167 Discuss the significance of Newsgroup in daily lives.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

A newsgroup is a forum or community bulletin board. It has different functionalities like:
a) We can post messages that are seen by all the users of Internet and can reply to other messages. It brings people closer.
b)  We can also search for different clubs and get to know new things.
c) We will get to know more people and also we can search people through their e-mail address to make network.


Q. 194168 Explain Video conferencing.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Video conferencing is a powerful tool that enables face-to-face, real-time communications between people around the world. It is a set of interactive telecommunication technologies which allow two or more locations to interact via two-way video and audio transmissions simultaneously.


Q. 194169 Explain the term Internet Chatting?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Internet chatting is when two or more online individuals come together to talk inside a chatroom, virtual software or instant messenger. Chatting is a popular way in which people stay connected-whether it be for business or for family who live miles apart. Business groups or organizations can use chatting to host online business meetings. Families who live within long distances of each other can use chat to stay in touch and still feel connected even though they are millions of miles apart.


Q. 194170 What is the role of web server program on the Internet?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

A web server program is a software that runs on the web site hosting Server computer. Its main purpose is to serve web pages; which mean it waits for requests from web browsers (also known as clients) and responds by sending the required data back.


Q. 194171 Explain advantages of E-mail.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

E-mail stands for Electronic Mail. It is the most widely used tool to send messages electronically on a network.

Advantages of email are as follows:
1. Fast: Messages can be sent anywhere around the world in an instant.
2. Cheap: Transmission usually costs nothing or at the most, very little.
3. Simple: Easy to use, after initial set-up.
4. Versatile: Pictures, power points or other files can be sent.
5. Record maintenance: Record of communications can be maintained as all messages are files.
6. Patience: Email can be read at ease.


Q. 194172 How can you send an e-mail to single person and multiple persons?
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

To send an e-mail to single person:
a) Open Internet Explorer by double clicking over it. Then type the address of the website at the address bar on which you have account.
b) Type the message in the Body part of the format of the e-mail.
c)  Now to send your message to a single person, type the email id of that person into the “To” textbox .
d) Now to send your message to multiple persons by writing the e-mail address of all the persons separated by commas ‘,’  or semicolons ‘;’ into the “CC” field and “BCC” field. But there are difference in using CC and BCC.
CC(Carbon Copy) allows you to send the same mail message to multiple recipients at the same time. Here one recipient could know the e-mail ids of all the recipients of the same message. 
BCC(Blind Carbon Copy) allows the sender to send the same mail – message to multiple recipients without letting them know that some other persons also have received the same mail message.


Q. 194173 There are different types or format of file available over the network while using FTP Service. Discuss these formats by distinguishing it in terms of ASCII and binary file.
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.

Right Answer is:

SOLUTION

Common file types with its mode are

              FILE

          MODE IN FTP

Text File

ASCII

Electronic mail message

ASCII

Word Processor file

Probably binary(e.g., .doc,.fm), Possibly ASCII(e.g., .rtf,.mif)

Backup file

Binary

Compressed file

Binary

Executable file

Binary

WWW(HTML) document

ASCII

Picture files(e.g.,GIF,JPEG,MPEG)

Binary

Audio file(e.g., WAV,AU)

Binary

Program source code

ASCII

Database file

Probably binary, Possibly ASCII

Spreadsheet

Probably Binary


Q. 194174 The two types of size attributes are


A. short and long.

B. float and short.

C. long and float.

D. absolute and relative.

Right Answer is: D

SOLUTION

The size attribute can either be given an absolute value, e.g., size=5 or it can be given a relative value, e.g., size = +1 or size = -2 provided you are working with Netscape Navigator as relative sizes are recognized by Navigator only and not by Internet Explorer.


Q. 194175 The correct way to use comments in the HTML code is


A. < ! …. This is a comment ! …. >.

B. < ….! This is a comment ….! >.

C. < ! - - - This is a comment - - - >.

D. < - - - ! This is a comment ! - - - >.

Right Answer is: C

SOLUTION

Comments are one type of textual content that appear in the HTML code but are not rendered by user’s browser. Comments are given between special < ! - - - and - - - > markup elements.


Q. 194176 The default size of horizontal rule is


A. 3 pixels.

B. 5 pixels.

C. 8 pixels.

D. 7 pixels.

Right Answer is: A

SOLUTION

The < hr > tag creates a horizontal line spread across the width of the browser window. The thickness and width can be varied as required. The default size of the horizontal rule is 3.


Q. 194177 Atul wants to make the text appear in the center. The correct HTML tag is


A. < center > The text is centralized < /center >.

B. < /center > The text is centralized < center >.

C. < centralized > The text is centralized < /centralized >.

D. < body style = “center” >.

Right Answer is: A

SOLUTION

When a segment of text needs to be centralized, the < center > tag is used. The correct form to make the text appear in the center is: < center > Text appears in center < /center >. Here, Text appears in the center will appear centralized on the browser window.


Q. 194178 One of the many tiny dots that make up the display on the computer is known as


A. point.

B. character.

C. element.

D. pixel.

Right Answer is: D

SOLUTION

The size attribute of < hr > is given in terms of pixels. The pixel is the smallest addressable screen element; it is the smallest unit of picture that can be controlled.


Q. 194179 The blank area left from the edge of page is known as


A. column.

B. tag.

C. row.

D. margin.

Right Answer is: D

SOLUTION

The margin refers to the blank area left from the edge of page. LEFTMARGIN attribute is used to leave the blank area in the left side.


Q. 194180 The correct HTML tag to make text bold is


A. < bold >.

B. < b >.

C. < bd >.

D. < b1 >.

Right Answer is: B

SOLUTION

< b > tag is used to make the text bold.


Q. 194181 The default font size set by BASEFONT is


A. 3.

B. 2.

C. 1.

D. 5.

Right Answer is: A

SOLUTION

The < BASEFONT > tag defines the basic size for the font; the browser will use to render normal document text. The default font size set by BASEFONT is 3. The size can have an absolute value from 1 to 7. For example, < BASEFONT size = 5 >.


Q. 194182 The text that we type between < p > and < /p > tags is by default


A. center aligned.

B. left aligned.

C. right aligned.

D. bottom aligned.

Right Answer is: B

SOLUTION

The text that we type between < p > and < /p > tags is by default left aligned. Thus, to change its alignment we can use ALIGN attribute of < p > tag. For example, < p align= ”right” >.


Q. 194183 Aruna wants to make the background appear green in the browser. The correct HTML is


A. < body bgcolor=”green” >.

B. < background > green < /background >.

C. < body=”green”, background >.

D. < body style=”background-color:green” >.

Right Answer is: A

SOLUTION

Aruna should use bgcolor attribute to make the background color appear green. The correct HTML is < body bgcolor=”green” >.


Q. 194184 HTML tag that causes browser to render text as italics is


A. < text style=”italics” > < /text >.

B. < ital > < /ital >.

C. < i > < /i>.

D. < b > < /b >.

Right Answer is: C

SOLUTION

The < i > tag is used to define the italic text. For example, < i > This text is italic < /I >.


Q. 194185 To specify English language, we use


A. “eng”.

B. “english”.

C. “eg”.

D. “en”.

Right Answer is: D

SOLUTION

The lang attribute specifies the language we use within the document. For example, “ en ” is used to specify English language and “ de ” is used to specify German language.


Q. 194186 To mark the beginning and end of an HTML document, we use


A. < html > and < /html > tags.

B. < title > and < /title > tags.

C. < htm > and < /htm > tags.

D. < head > and < /head > tags.

Right Answer is: A

SOLUTION

The < html > and < /html > tags are used to mark the starting and end of an html document. This tag is used to make browsers and other programs know that this is an html document.


Q. 194187 HTML is


A. case-sensitive.

B. not case-sensitive.

C. a programming language.

D. desktop publishing solution.

Right Answer is: B

SOLUTION

HTML is not case-sensitive. In other words, HTML tags can be written in capital as well as small letters, e.g., &lt;TITLE&gt; and &lt;title&gt; are same in HTML.


Q. 194188 A coded HTML command that indicates how part of web page should be displayed is known as a


A. tag.

B. document.

C. file.

D. header.

Right Answer is: A

SOLUTION

HTML tag is used to mark-up HTML elements. The HTML tags are surrounded by angle brackets. These tags usually come in pairs like < b > and < /b >.


Q. 194189 To insert a line break, we use


A. < b >.

B. < break >.

C.

D. < break/ >.

Right Answer is: C

SOLUTION

< br > is used to insert a line break into a text font. They don’t have a “beginning” or “end” and they do not come in pairs.


Q. 194190 The correct html tag for defining a paragraph is


A. < para >.

B. < paragraph >.

C. < p >.

D. < pg >.

Right Answer is: C

SOLUTION

< p > tag is used for defining a paragraph. < P > marks beginning of the paragraph. < /P > marks end of the paragraph.


Q. 194191 HTML is


A. web page layout language.

B. word processing tool.

C. programming language.

D. desktop publishing solution.

Right Answer is: A

SOLUTION

HTML (Hyper Text Markup Language) is the basic language used to write web pages. It allows web sites to bring together graphics, music, videos and links.


Q. 194192 Format to define font face of the text is


A. < text style = “ Arial ” >.

B. < font face = “Arial” >< /font >.

C. < text = Arial >.

D. < face = “Arial” >.

Right Answer is: B

SOLUTION

The font tag is used to set the font size for text. To insert the font face attribute in the HTML code, the syntax used is < font face = “Arial” > Programming< /font >.


Q. 194193 The correct HTML tag for inserting an horizontal line is


A. < hr >.

B. < line >.

C. < horizontal line >.

D. < tr >.

Right Answer is: A

SOLUTION

The < hr > tag is used for inserting a horizontal rule. It breaks a text flow and inserts a horizontal rule. The attributes for < hr > tag are size, width, no shade and color.


Q. 194194 Write the HTML codes to set the bgcolor as blue and a text”I like to play football” as yellow.
A. < hr >.
B. < line >.
C. < horizontal line >.
D. < tr >.

Right Answer is:

SOLUTION

< body bgcolor=“blue” text=”yellow” >


Q. 194195 Give the HTML code line to set the background image as birds.gif.
A. < hr >.
B. < line >.
C. < horizontal line >.
D. < tr >.

Right Answer is:

SOLUTION

< body background=”birds.gif” >


Q. 194196 Differentiate between VLink and ALink? Give one example for each.
A. < hr >.
B. < line >.
C. < horizontal line >.
D. < tr >.

Right Answer is:

SOLUTION

The VLINK refers to visited links. It specifies the color used for hypertext links that have been previously visited by the viewer. For example, < BODY VLINK = “magenta” >, would specify magenta as the color to be used on a page for visited links.     

The ALINK attribute refers to the active link. It is used for links at the moment the user clicks on the link. For example, < BODY ALINK=”CYAN” >.


Q. 194197 What is the default colour of text displayed by browsers? How can it be changed?
A. < hr >.
B. < line >.
C. < horizontal line >.
D. < tr >.

Right Answer is:

SOLUTION

By default browsers displays text in black colour on a grey background. We can change the colour or text by TEXT attributes and link by LINK attributes (visited links by VLINK attributes and active link by ALINK attribute).

Example: < BODY bgcolor = “blue” text = “#FFFFFF” link = “#9690CC”>

This will create a window with a blue background, white text and silver hyperlinks.


Q. 194198 What does a background attribute do? Write the tag to include a background image.
A. < hr >.
B. < line >.
C. < horizontal line >.
D. < tr >.

Right Answer is:

SOLUTION

The background attribute specifies an image file to use as a background behind the displayed text and graphics.  

< body background = “filename.gif” >


Q. 194199 What is the general form of an HTML document?
A. < hr >.
B. < line >.
C. < horizontal line >.
D. < tr >.

Right Answer is:

SOLUTION

The general form of an HTML document is as follows:

< html >

< head >

< title > Title goes here < /title >

< /head >

< body >

Content goes here

< /body >

               < /html >


Q. 194200 What is the difference between container tags and empty tags?
A. < hr >.
B. < line >.
C. < horizontal line >.
D. < tr >.

Right Answer is:

SOLUTION

The container tags are pair tags, i.e., they require a starting tag as well as an ending tag. They affect the text appearing between their starting and ending tag.

The empty tag just requires a starting tag and no ending tag. They just carry out the job assigned to them.


PreviousNext