Answer:
The answer to this question is given below in the explanation section.
Explanation:
WHILE loops and DO WHILE loops are called the condition controlled loops. The execution of these loops depends on a certain condition, when the condition is true, the loop body will be executed and when the condition becomes false, the loop body will not be executed. the major difference between both loops is given below.
In the WHILE loop, the condition is checked at the beginning of the loop whereas in the do-while loop condition is checked at the end of the loop and, in the do-while loop, the loop body is executed at least once.
The syntax of the while loop is given below
while (condition) {
// code block to be executed
}
The syntax of do-while loop is given below
do {
// code block to be executed
}
while (condition);
Answer:
Hi also thank you for the points very much appreciated.
Server and device both are useful to object to connect to a network and share data with any other application.
<link> tag
The <link> tag is most often used to link to external style sheets. The <link> element is an empty element, it contains attributes only.
Answer:
its going pretty well! thanks bro
Explanation: