This is totally an opinion question. More for chatter.
I'm taking some c++ tests and they are littered with cin and cout's.
Do people acutally still use these. I mean I've not seen one in an actual public application ever.
The last question I answered in a test was
int c1;
cout << "Enter numbers: " << flush;
for(int n = 0; cin >> c1; ++n){
cout << c1 << endl;
}
When does this end..
The correct answer was "when a user hits ctrl+Z". Where in the heck would I press control+Z? I'm assuming in the terminal, I suppose. But honestly. I've not seen the terminal for ages and ages. And I'm sure as heck not going to attempt to program anything for it.
Are questions like this still relevant, in any of our lives?