To Print a string, int or bool to the screen, what function do you use?
cout «
At the end of every line what character must be used?
; ( a semi-colon)
How to make a newline character?
«_space;endl; or on a new line cout «_space;endl;
How do you make a single line comment comment in C++?
A double dash at the beginning of the line //
How do you make a block comment in C++?
A dash and asterisk at the start of the block and a inverted dash and asterisk at the end. /* and */
What is an IDE?
An integrated development environment is a computer program that makes it easier to write other computer programs.