Example Questions
1. Given the following, determine the natural type of the symbols, as though they were written in a C/C++ program.
2. What is the output of the following program:
#include#include using namespace std; int main() { if (true) { cout << "Yes." << endl; } else { cout << "No." << endl; } return 0; }