Podcast
Questions and Answers
C++ is a general-purpose programming language used to create ______ programs.
C++ is a general-purpose programming language used to create ______ programs.
computer
The C++ compiler ignores ______ lines.
The C++ compiler ignores ______ lines.
blank
GUIDO VAN ROSSUM is the creator of ______.
GUIDO VAN ROSSUM is the creator of ______.
Python
C++ is ______ from C, and is largely based on it.
C++ is ______ from C, and is largely based on it.
Signup and view all the answers
The std namespace includes features of the C++ ______ Library.
The std namespace includes features of the C++ ______ Library.
Signup and view all the answers
Using namespace ______; is used to tell the compiler to use the standard namespace.
Using namespace ______; is used to tell the compiler to use the standard namespace.
Signup and view all the answers
The # sign at the beginning of a line targets the compiler's ______.
The # sign at the beginning of a line targets the compiler's ______.
Signup and view all the answers
The ______ defines the standard stream objects that input and output data.
The ______ defines the standard stream objects that input and output data.
Signup and view all the answers
The ______ brackets indicate the beginning and end of a function.
The ______ brackets indicate the beginning and end of a function.
Signup and view all the answers
Failing to end each statement with a semicolon will result in a ______.
Failing to end each statement with a semicolon will result in a ______.
Signup and view all the answers
A non-zero value (usually of 1) signals ______ termination.
A non-zero value (usually of 1) signals ______ termination.
Signup and view all the answers
Cout is an object used together with the ______ operator.
Cout is an object used together with the ______ operator.
Signup and view all the answers