This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 151. |
__________ is compatible with most of the web browsers. (A) Web server (B) Uniform Resource Locator (C) HyperText Transfer Protocol (D) HyperText Markup Language |
|
Answer» (D) Hyper Text Markup Language |
|
| 152. |
What is a newsgroup? |
|
Answer» A newsgroup is an internet-based discussion group. Users post messages to a news server. Then other users can access the newsgroup and read the postings and reply with their comments and views on that topic. |
|
| 153. |
What is FTP? Mention is use. |
|
Answer» It is a standard network protocol used to exchange and manipulate files over a TCP/IP based network, such as the Internet. FTP is most commonly used to download a file from a server using the Internet or to upload a file to a server. |
|
| 154. |
What is meant by web page and web site? |
|
Answer» A web page is a HTML document or resource of text, images and video’s that is suitable for the World Wide Web, while a website is a collection of web pages. |
|
| 155. |
Name the two kinds of web pages. |
|
Answer» The two kinds of web pages are static web pages and dynamic web page. |
|
| 156. |
Expand FTP. |
|
Answer» FTP stands for File Transfer Protocol. |
|
| 157. |
What is the use of telnet? Briefly explain. |
|
Answer» Telnet stands for ‘telecommunications network’, and was built to be form of remote control to manage mainframe computers from distant terminals. Telnet is a text-only protocol, and the user cannot see graphics or fancy images while working with Telnet, nor will they be able to transfer files with Telnet. Telnet is used to communicate with other computers and machines in a text-based manner. |
|
| 158. |
Define protocol. |
|
Answer» A specific set of communication rules is called a protocol. |
|
| 159. |
What is telnet or remote login? |
|
Answer» This is a program that allows a user to access resources of a computer situated in a different location via a text-based interface. |
|
| 160. |
What is Gopher? |
|
Answer» The gopher is a system that allows users of the internet to search for and retrieve information using a text interface via a directory structure. |
|
| 161. |
What is a static web page? |
|
Answer» A web page that shows the same contents every time, when they are viewed is called a static web page. |
|
| 162. |
Define web page. |
|
Answer» A web page is HTML document or resource of text, images and video’s that is suitable for the World Wide Web. |
|
| 163. |
What is a dynamic web page? |
|
Answer» A web page that has contents that can change dynamically whenever they are a mended and show to changed page when it is viewed is called a dynamic web page. |
|
| 164. |
Expand the term XHTML. |
|
Answer» The term XHTML means Extensible Hyper Text Markup Language. |
|
| 165. |
Expand the term HTML. |
|
Answer» HTML means Hyper Text Markup Language. |
|
| 166. |
Expand HTTP. |
|
Answer» The term HTTP means Hyper Text Transfer Protocol. |
|
| 167. |
Write any two popular web browsers. |
|
Answer» The most popular browsers are google chrome, Microsoft Internet Explorer and Firefox. |
|
| 168. |
Expand WWW. |
|
Answer» WWW stands for World Wide Web. |
|
| 169. |
Expand the term DNS. |
|
Answer» The term DNS means Domain Name System. |
|
| 170. |
What is DNS? |
|
Answer» It is a name that identifies one or more IP addresses on the internet. |
|
| 171. |
Mention any two services of the internet. |
|
Answer» The main services of the internet are email, voicemail, and chat. |
|
| 172. |
What is a URL? |
|
Answer» URL is the address of a specific Web site or file on the Internet. It cannot have spaces or certain other characters in its name and uses forward slashes to denote different directories. |
|
| 173. |
Mention any two uses of the internet. |
|
Answer» 1. One can talk to anyone, anywhere around the world. 2. Offers unlimited commercial opportunity to do business 3. Can be used to play computer games. |
|
| 174. |
What are search engines? |
|
Answer» A web search engine is an automated software agent that is designed to search for information on the World Wide Web. |
|
| 175. |
Write the services of the internet. |
|
Answer» The services of the internet are email, chat, newsgroup, FTP, WWW, etc., |
|
| 176. |
What do you mean by surfing? |
|
Answer» The term surfing is a type of Web browsing in which the user jumps from web page to web page at random. |
|
| 177. |
What are the uses of the internet? |
|
Answer» 1. One can talk to anyone, anywhere around the world. 2. Ocean of resources waiting to be mined. 3. One can do research on any subject for a project. 4. Online business, on-line reservation can be done sitting at in-home or workplace |
|
| 178. |
What is the history of the internet? |
|
Answer» In 1969, the American Department of Defense (DOD) started a network of devices called ARPANET (Advanced Research Projects Administration Network) with one computer in California and three in Utah. The actual term Internet was coined in 1995 by the FNC (Federal Networking Council, USA). |
|
| 179. |
What are tags? |
|
Answer» Tags are instructions that are embedded directly into the text of the HTML document. |
|
| 180. |
What is the use of <HR> tag ? |
|
Answer» The tag is used to insert a horizontal ruler line in an HTML document. |
|
| 181. |
What are the different types of tags? |
|
Answer» The different types of tags are empty tags and container tags. |
|
| 182. |
Name the tag used to apply an unordered list. |
|
Answer» The tag used to apply the ordered list is <UL>. |
|
| 183. |
What is an empty tag? |
|
Answer» It is a singular tag and does not have a companion tag. |
|
| 184. |
Discuss the Forms in HTML. |
|
Answer» 1. Forms in HTML are used to accept user input. 2. A Form is a collection of different elements also called controls. 3. Name attributes specifies a name to a form. 4. The Action attribute specifies the path where the form is to be submitted. 5. The Method attribute specifies the get or post method to be used when submitting the form data. 6. The default method of submitting form data is GET. 7. The data submitted by using GET is visible in the address bar. 8. The POST method of sending data does not display the form data in the address bar. |
|
| 185. |
Name the tag used to apply the ordered list. |
|
Answer» The tag used to apply ordered list is <OL>. |
|
| 186. |
What is a container tag? |
|
Answer» HTML tags which require a closing tag are called container tags. |
|
| 187. |
What are the two types of list? |
|
Answer» The two types of list are ordered list and unordered list. |
|
| 188. |
Explain the <input> tag and type of control. |
|
Answer» 1. <Input type = “text”> creates a oneline Textbox. 2. <Input type = “radio”> creates a Radio button. 3. The Radio button allows one option selection against multiple choices. 4. <Input type = “checkbox’^ creates a Checkbox. 5. A checkbox allows more than one selection against multiple choices. 6. <Input type = “submit”> displays a button for Submitting the form data to a server. 7. The Password input type is used to create text contents in the form of ‘*’ asterisk or ‘•’ disc. 8. The Reset control clears the text content entered in the form. 9. <Input type = “Button.”> displays push button which activates on events. |
|
| 189. |
What is the default extension file name for an HTML document? |
|
Answer» The default extension file name for an HTML document is *.HTM or *.HTML. |
|
| 190. |
Name the tag to break the line. |
|
Answer» The tag used to break the line is <br>. |
|
| 191. |
Give the named of the tag used to hyperlink to web pages. |
|
Answer» Give the named of the tag used to hyperlink to web pages. |
|
| 192. |
Name the tag to insert the image in the HTML document. |
|
Answer» The tag to insert the image in a HTML document is <img>. |
|
| 193. |
True or False:1. <b> formatting is used to make a document look attractive thereby enhancing its appearance.2. <b> displays text within it in Bold like Hello. |
|
Answer» 1. False 2. True |
|
| 194. |
Name any two formatting tags. |
|
Answer» Two formatting tags are <b> for bold text and <i>for italicizing text. |
|
| 195. |
__________ defines a section in a document. (A) <header>(B) <nav>(C) <section>(D) <article> |
|
Answer» (C) <section> |
|
| 196. |
True or False:1. <footer> defines a footer for a document or a section.2. <details> defines additional details. |
|
Answer» 1. True 2. True |
|
| 197. |
__________ defines a header for a document or a section.(A) <header>(B) <nav>(C) <section>(D) <article> |
|
Answer» (A) <header> |
|
| 198. |
__________ formatting is used to make a document look attractive thereby enhancing it’s appearance.(A) Text (B) <b>(C) <i>(D) <u> |
|
Answer» Correct option is (A) Text |
|
| 199. |
__________ defines content apart from the content (like a sidebar).(A) <aside>(B) <footer>(C) <details>(D) <header> |
|
Answer» Correct option is (A) <aside> |
|
| 200. |
1. The HTML ___________ element defines marked or highlighted text.2. HTML provides ___________ levels of heading tags. |
|
Answer» 1. <mark> 2. Six |
|