Answer:
The answer is "True".
Explanation:
The web page is also known as a home page when it collects more than one page, it is called website. In web page designing, it uses the HTML for design a page and is also available via the web or other networks.
- When we insert a URL address to the Web page, it means, it contains the text, graphics, and hyperlinks to other Web pages and files.
- It also displays all the data on the page, that's why the given statement is true.
Answer:
i<6 is the "end guard". This means that the loop continues while this is true, and ends when this is false.
i++ is the "continuation", it is the operation executed when the loop continues. i++ increases the value of i by one.