C ++ questions. 1) Fill in the blanks. a) STL algorithms work indirectly using ______ on container elements. b) A ______ data member contains information belonging to the class. 2) Fix bugs and potential flaws in this code. #include int main() { vector coordinates; coordinates.push_back(34); coordinates.push_back(768); coordinates.push_back(516); coordinates.push_back(834); for(auto it = coordinates.begin(); it != coordinates.end(); it++) if(*it == 768) coordinates.erase(it); for(auto& coordinate : coordinates) cout << coordinate << ", "; cout << '\n'; return 0; } 3) Being able to point to a derived class object with a base class pointer is a result of the ISA relationship. True or False?

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter10: Classes And Data Abstraction
Section: Chapter Questions
Problem 17PE
icon
Related questions
Question

C ++ questions.

1) Fill in the blanks.
a) STL algorithms work indirectly using ______ on container elements.
b) A ______ data member contains information belonging to the class.

2) Fix bugs and potential flaws in this code.

#include<iostream>

int main() {
vector<int> coordinates;

coordinates.push_back(34);
coordinates.push_back(768);
coordinates.push_back(516);
coordinates.push_back(834);

for(auto it = coordinates.begin(); it != coordinates.end(); it++)
if(*it == 768)
coordinates.erase(it);

for(auto& coordinate : coordinates)
cout << coordinate << ", ";
cout << '\n';
return 0;
}

3) Being able to point to a derived class object with a base class pointer is a result of the ISA relationship. True or False?

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning