InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
#include<iostream>using namespace std;int main (){int cin;cin >> cin;cout << "cin" << cin;return 0;}Thanks to Gokul Kumar for contributing this question.(A) error in using cin keyword(B) cin+junk value(C) cin+input(D) Runtime error |
| Answer» | |
| 2. |
Inline functions are useful when(A) Function is large with many nested loops(B) Function has many static variables(C) Function is small and we want to avoid function call overhead.(D) None of the above |
| Answer» | |