Answer:
A. True
Explanation:
Websites are created using html, css, javascript and other web based programming languages. When a website page is requested, the host server sends the copy of the source code to the web browser of the client system, the web browser is able to interpret the source code and displays the graphical representation on the web browser for the client.
D. all of these, since it depends on how the cell is formatted.
Windows and linux are best in my opinion! Linux is not used by many people but a lot of apps can't be used for linux so best is to use windows. But Mac is not bad too. Hope I helped and have a nice day!
Answer:
a
Explanation:
The variable declared in the for is accessible only within the for loop and it goes out of scope once the loop get end
eg : for(int i=1;i<=10,i++) // variable i is declared
{
// variable i is visible only in this block,
}
//After this the variable i goes out of scope