Explore topic-wise InterviewSolutions in .

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.

201.

__________ defines additional details. (A) <aside>(B) <footer>(C) <details>(D) <header>

Answer»

(C) <details>

202.

1.___________ defines a section in a document.2. ___________ defines an independent selfcontained article.

Answer»

1. <section>

2. <article>

203.

1. ___________ defines content apart from the content (like a sidebar).2. ___________ defines a footer for a document or a section.

Answer»

1. < aside >

2. < footer >

204.

1. ___________ defines additional details.2. _________ formatting is used to make a document look attractive thereby enhancing its appearance.

Answer»

1. details

2. Text

205.

1. _________ displays text within it in Bold like Hello.2. _________ displays text within it in italicized manner like Hello.

Answer»

1.< b > 

2. < i >

206.

True or False:1. width specifies the length of the ruled line in % or pixels.2. size sets the thickness of a ruled line.

Answer»

1. True

2. True

207.

1. ___________ is referred as alternate text.2. ___________ is a empty tag.

Answer»

1.  Alt

2. <IMG>

208.

1. ___________ specifies the length of the ruled line in % or pixels.2. ___________ sets thickness of a ruled line.

Answer»

1. width

2. size

209.

What is the use of a web page?

Answer»

A web page is a document commonly written in Hyper Text Markup Language (HTML) that is accessible through the Internet or other network using a browser.

210.

True or False:1. &lt;p&gt; tag is used to display horizontal ruled line.2. color sets the color for the horizontal ruled line.

Answer»

1. False

2. True

211.

1. ___________ tag is used to display horizontal ruled line.2. ___________ sets color for the horizontal ruled line.

Answer»

1. <hr>

2. color

212.

What do you mean by domain?

Answer»

On the Internet, a domain consists of a set of network addresses. Domain names are used to identify one or more IP addresses.

213.

Explain Inserting an image, a horizontal ruled line, and a paragraph.

Answer»

1. <IMG> tag is used to insert an image within a webpage.

2. src is used to specify the path of an image file.

3. Height specifies the height of the image in pixels.

4. Width specifies the width of the image in pixels.

5. Alt is referred to as alternate text.

6. <IMG> is an empty tag.

7. <hr> tag is used to display horizontal ruled line.

8. color sets the color for the horizontal ruled line.

9. Width specifies the length of the ruled line in % or pixels.

10. Size sets the thickness of a ruled line.

11. <P> tag is used to define paragraphs.

214.

What the use of PHP files?

Answer»

1. PHP can perform calculations - PHP can perform all types of calculations. Can find out what day it is, or what day of the week March 18, 2046, is, to perform all different types of mathematical equations.

2. PHP can collect user information - collecting the temperature from the user that they want to convert from degrees to another format, or adding their information to an address book

3. PHP can interact with MySQL databases - This allows creating pages on the fly using the contents of the database, creating a website search feature, or keep the store’s product catalogue.

4. PHP and GD Library can create graphics - You can use PHP to create simple graphics and also use it to edit existing graphics.

215.

Write the opening and closing tag.

Answer»

HTML elements are written with a start tag, with an end tag, with the content in between:
<tagname>content</tagname>
The HTML element is everything from the start tag to the end tag:
<p>My first HTML paragraph.</p>

216.

With the help of syntax include images on a web page.

Answer»

Syntax: <img src = “location of the file” alt= “some_text” width=value height=value>
Example: <img src = “pic_mountain.jpg” alt= “MountainView” width= “50%” height=”50%” >

217.

What is web scripting?

Answer»

1. A script is a list of commands that are present within the code of a website that defines how the website behaves in response to certain click requests sent by the user.

2. The programming languages in which scripts are written are called scripting languages. Few common scripting languages are VBScript, JavaScript, ASP, PHP, PERL, JSP, etc.,

3. Scripts are broadly classified into Client-Side Script and Server Side Scripts.

4. Client-side scripting languages are scripts, which are executed in the client’s browser. Some of the most popular are: HTML, CSS, XML etc.,

5. The server-side script is executed on the server and the visitor of the website can only see the result. Popular server-side scripts are PHP, Python, Perl, etc.

218.

What is the use of net scape?

Answer»

Netscape Communications was a computer services company best known for its Web browser, Navigator. Navigator was one of the two most popular Web browsers in the 1990s. A web browser is a software application used to locate, retrieve and display content on the World Wide Web, including Web pages, images, video, and other files.

219.

What do you mean by hosting?

Answer»

Web hosting is the business of housing, serving, and maintaining files for one or more Web sites and provide a fast connection to the Internet.

220.

Write the steps for creating a web page?

Answer»

Steps To create a Web page
Step 1: Click on the START button.
Step 2: Click on PROGRAMS.
Step 3: choose ACCESSORIES.
Step 4: choose NOTEPAD.
Step 5 : Write the HTML code.
<HTML>
<HEAD> <TITLE> his is my funky title </TITLE></HEAD>
<BODY> Welcome to HTML world </BODY>
</HTML>
Step 6: Save The file with primary filename and extension file name as .html

221.

Write a note on creating a table.

Answer»

1. A Table is made up of rows and columns.

2. <table> is used to indicate the creation of a table.

3. <caption> is used to specify a table heading.

4. <tr> tag is used to create each row of the table.

5. <th> indicates table heading.

6. <th. specifies data within the table (cell content).

222.

How do you register a domain?

Answer»

Steps involved in domain registration are as follows:

Step 1: Decide the name and check the availability by doing a domain search with a domain registrar. If the domain name is available for registration one can proceed further.

Step 2: Choose a domain registrar. Also, see who offers the best price for registration and good service.

Step 3: Once you have shortlisted the registrar you need to do a search for the domain on the registrar’s website. If the domain is still available for registration you can proceed further with the registration process. Click on add to cart, and proceed through the checkout process.

Step 4: The only thing that is left to do is to make the payment for registration to the register.

223.

What are the steps used in creating web hosting?

Answer»

The steps to follow to set up a website hosted entirely on your own Windows PC:

  1. Make sure to high-speed internet connection.
  2. Get a DNS hostname for your home Internet connection.
  3. Get a static local IP address for your computer within your home network.
  4. Configure your router to correctly forward connections on port 80 (the HTTP port) to your web server.
  5. Get Apache, a free, high-quality web server program, or Microsoft Internet Information Server (IIS), which comes standard with Windows XP Professional.
  6. Test your web server from your own computer.
  7. Replace the default home page with your own web page. Now the site is your own!
  8. Test your web server from a computer that is NOT on your home network to make sure you followed all of the steps correctly.
224.

True or False:1. parseFloat() function is used to parse a string and convert it into a number.2. parselnt() function is used to parse a string and convert it into floating-point representation.

Answer»

1. False

2. False

225.

True or False:1. The function is used to perform repetitive tasks whenever required.2. The function is a reusable code block that will be executed when it is called.

Answer»

1. True

2. True

226.

The growing demand for attractive presentation of information using electronic means gave rise to the invention of __________ (A) Online (B) Internet (C) Webpages (D) Websites

Answer»

(D) Websites

227.

The standards and formats for presenting text and graphics on the internet are developed and approved by __________ governing authorities.(A) Online (B) Internet (C) Webpages (D) World Wide Web

Answer»

(D) World Wide Web

228.

WWW stands for __________ (A) World Wide Web (B) Webpage (C) Website(D) Web Browser

Answer»

(A) World Wide Web

229.

True or False:1. The standards and formats for presenting text and graphics on the internet are developed and approved by Webpages governing authorities.2. The growing demand for attractive presentation of information using electronic means gave rise to the invention of Websites.

Answer»

1. False

2. True

230.

True or False:1. WWW stands for world wide web.2. WWW stands for world wide web normally referred to as Webpage.

Answer»

1. True

2. False

231.

1. The ___________ tag displays text in bold and with largest heading level.2 .The ___________ tag displays text in the smallest heading level.

Answer»

1. <H1>

2. <H6>

232.

1. ___________ tag is used to insert an image within a webpage.2. ___________ is used to specify the path of an image file.

Answer»

1. <IMG>

2. src