Answer:
LA
Explanation:
where the rich people live
If you pin the tab it dramatically lowers usage
Answer:
It helps to put the code in to your working memory and you will have a greater ability to problem solve.
Explanation:
If your just a beginner, then writing the code out your self will help you learn what each line means. Also, you will see the effects that each line has. Of course, this is really dependent on how much code you've written before and how much code your dealing with.
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 .