CPP C++ Certified Professional Programmer

Loading demo links...

Showing 1–3 of 15 questions

Question 1 (Volume A)

Which method added to class B at the marked spot will allow the code below to compile? Choose all possible solutions.

#include

#include #include using namespace std; class B { int val; public:

B(int v):val(v){}

int getV() const {return val;}

/* Insert Code Here */

};

ostream & operator <<(ostream & out, const B & v) { out<struct Out { ostream & out;

Out(ostream & o): out(o){}

void operator() (const T & val ) { out<

int t[]={8, 10, 5, 1, 4, 6, 2, 7, 9, 3}; vector v1(t, t+10);

sort(v1.begin(), v1.end(), greater()); for_each(v1.begin(), v1.end(), Out(cout));cout<

Select all that apply, then click Submit answer.

  • bool operator < (const B & v) const { return val<>

  • bool operator > (const B & v) const { return val<>

  • bool operator > (const B & v) const { return val>v.val;}

  • bool operator == (const B & v) const { return val==v.val;}

  • operator int () const { return val; }

Question 2 (Volume A)

Which stack initialization (line numbers) are correct? Choose all that apply.

#include

#include

#include

#include #include

using namespace std;

int main()

{

deque mydeck; list mylist; vector myvector; stack first;// Line I stack second(mydeck);// Line II stack third(second);// Line III stack > fourth(mylist);// Line IV stack > fifth(myvector);// Line V return 0; }

Select all that apply, then click Submit answer.

  • line I

  • line II

  • line III

  • line IV

  • line V

Question 3 (Volume A)

What happens when you attempt to compile and run the following code?

#include

#include

#include #include using namespace std; templatestruct Out { ostream & out;

Out(ostream & o): out(o){}

void operator() (const T & val ) { out<

int t[]={8, 10, 5, 1, 4, 6, 2, 7, 9, 3}; deque d1(t, t+10); set s1(t,t+10);

cout<

<<>

return 0; }

Choose all possible outputs (all that apply):

Select all that apply, then click Submit answer.

  • 1 0

  • 1 1

  • true true

  • false false

  • compilation error