The My Computer folder is a multipurpose tool and is a gateway to all the data stored in the computer. This folder sits at the top of your laptop or PC. It can be found on your computer’s desktop, on the start menu and within the windows explorer. <u>Clicking or double clicking on these options will bring up the My Computer folder. </u>
<u>Another easier way of doing this is to hold down the windows + E combination keyboard keys.</u>
Answer:
The option(B) is the correct answer .
Explanation:
In C++ the // (two slash marks ) indicating the beginning of a comment .The two slash marks ( // ) comment the single line in a program.To use two slash marks ( // ) comment we simply write // in which line we have to make comment.
following are the example of code in c++
#include<iostream.h> // header file
void main() // main method
{
cout<< " india"; // print india
}
here // indicating the beginning of a comment .