Term
The program execution in C++ begins with the ______ function. |
|
Definition
|
|
Term
True or False: C++ is a case-sensitive programming language. |
|
Definition
|
|
Term
Which header file is required for basic input/output operations in C++?
A) <cstdio>
B) <iostream>
C) <stdlib.h>
D) <conio.h>
|
|
Definition
|
|
Term
The symbol << is used for ______ in C++. |
|
Definition
|
|
Term
Which of the following correctly declares an integer variable named age ?
A) int age;
B) integer age;
C) Age int;
D) int: age;
|
|
Definition
|
|
Term
True or False: A variable in C++ must be declared before it is used. |
|
Definition
|
|
Term
Which operator is used to assign a value to a variable in C++?
|
|
Definition
|
|
Term
|
Definition
|
|
Term
A C++ statement ends with a ______. |
|
Definition
|
|
Term
The logical AND operator in C++ is represented by ______. |
|
Definition
|
|
Term
The logical OR operator in C++ is represented by || |
|
Definition
|
|
Term
To insert a single-line comment in C++, you begin the line with ______. |
|
Definition
|
|