Free CPP Exam Braindumps (page: 23)

Page 23 of 58

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

#include <iostream>
#include <algorithm>
#include <map>
using namespace std;

void myfunction(pair<int, int> i) {
cout << " " << i.first;
}

int main() {
int t[] = { 10, 5, 9, 6, 2, 4, 7, 8, 3, 1 };
map<int, int> m;
for(int i=0; i < 10; i++) {
m[i]=t[i];
}

for_each(m.begin(), m.end(), myfunction);
return 0;
}

Program outputs:

  1. 10 5 9 6 2 4 7 8 3 1
  2. 0 1 2 3 4 5 6 7 8 9
  3. 9 8 7 6 5 4 3 2 1 0
  4. 1 3 8 7 4 2 6 9 5 10
  5. compilation error

Answer(s): B



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

#include <iostream>
using namespace std;
int main()
{
cout<<true<<" "<<boolalpha<<false;
return 0;
}

Program outputs:

  1. true false
  2. 1 0
  3. 1 false
  4. true 0
  5. compilation error

Answer(s): C



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

#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
class B { int val;
public:
B(int v):val(v){}
int getV() const {return val;} bool operator < (const B & v) const { return val<v.val;} };
ostream & operator <<(ostream & out, const B & v) { out<<v.getV(); return out;}
template<class T>struct Out {
ostream & out;
Out(ostream & o): out(o){}
void operator() (const T & val ) { out<<val<<" "; } };
int main() {
int t[]={8, 10, 5, 1, 4, 6, 2, 7, 9, 3};
vector<B> v1(t, t+10);
sort(v1.begin(), v1.end());
for_each(v1.begin(), v1.end(), Out<B>(cout));cout<<endl;
return 0;
}

Program outputs:

  1. 8 10 5 1 4 6 2 7 9 3
  2. 1 2 3 4 5 6 7 8 9 10
  3. compilation error
  4. 10 9 8 7 6 5 4 3 2 1

Answer(s): B



Which sentence is correct about the code below? Choose all that apply.

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
class F {
int val;
public:
F(int v):val(v){}
bool operator() (int v) {
if (v == val) return true;
return false;
}
};

int main() {
int t[] = { 10, 5, 9, 6, 2, 4, 7, 8, 3, 1 };
vector<int> v1(t, t + 10);
if (find(v1.begin(), v1.end(), 6) == find(v1.begin(), v1.end(), F(6))) {
cout<<"Found!\n";
} else {
cout<<"Not found!\n";
}
return 0;
}

  1. it will compile successfully
  2. it will display Found!
  3. it will display Not found!
  4. it will not compile successfully

Answer(s): D



Page 23 of 58



Post your Comments and Discuss C++ Institute CPP exam with other Community members:

Moana commented on January 06, 2025
Good work, today trying to review your questions.
Anonymous
upvote

heran commented on January 06, 2025
Only going through these questions would be enough to pass the exam ?
Anonymous
upvote

GAnesh commented on January 06, 2025
useful questions
Anonymous
upvote

ganesh commented on January 06, 2025
useful information
Anonymous
upvote

Villain commented on January 06, 2025
I have the same question as all of you. Will these questions and answers suffice as the only piece of study material used? Are they similar enough?
Anonymous
upvote

Milton commented on January 06, 2025
Similar questions as the real exam
UNITED STATES
upvote

Boyce Nyanga commented on January 06, 2025
This is very helpful
BOTSWANA
upvote

Venkatesh Rambothu commented on January 06, 2025
Useful Deck
Anonymous
upvote

Ahmed commented on January 05, 2025
great questions
Anonymous
upvote

Ff commented on January 05, 2025
it seems ok the questions and answers look legit.
Anonymous
upvote

Deepak.Cloudbrains commented on January 05, 2025
Preparing for exam
EUROPEAN UNION
upvote

Madhu commented on January 05, 2025
useful info
UNITED STATES
upvote

kunal sahu commented on January 05, 2025
good progress
Anonymous
upvote

NS commented on January 05, 2025
Good information
UNITED STATES
upvote

Mercy commented on January 05, 2025
I have planned to take the exam by the end of this week.
UNITED STATES
upvote

P commented on January 05, 2025
Useful data
Anonymous
upvote

Alken commented on January 04, 2025
No comments yet Still watching the pattern of exam
UNITED STATES
upvote

Allen commented on January 04, 2025
Nice approach
UNITED STATES
upvote

T0m commented on January 04, 2025
Did anyone passed this exam recently using these dumps ?
Anonymous
upvote

N commented on January 04, 2025
I find the questions and solutions very useful, in depth.
UNITED KINGDOM
upvote

Bindu commented on January 04, 2025
Good This is super! Will inform once I complete the test
Anonymous
upvote

Hrish commented on January 04, 2025
Good practice
Anonymous
upvote

Woke commented on January 04, 2025
Great content
Anonymous
upvote

Sam commented on January 04, 2025
Awesome awesome
Anonymous
upvote

David Adeyeri commented on January 04, 2025
i am using this as a refresher for any new things that might have been introduced into CCNA.
Anonymous
upvote

maddy commented on January 03, 2025
fantastic questions
Anonymous
upvote

aditya commented on January 03, 2025
nice questions
Anonymous
upvote

durgesh patel commented on January 03, 2025
really helpful
Anonymous
upvote

Katie commented on January 03, 2025
Doing well so far
Anonymous
upvote

Rainy commented on January 03, 2025
use it to prepare for exam
GERMANY
upvote

Pankti commented on January 03, 2025
Thanks for sharing exam questions. These are really helpful for exam preparation.
UNITED STATES
upvote

Yusuf D commented on January 03, 2025
awesome, lets see how it goes.
TURKEY
upvote

Shahajahan Tamboli commented on January 03, 2025
Its truly free dumps and helpful for clearing AZ-140, Thanks !
Anonymous
upvote

ALEX commented on January 03, 2025
Very helpful
TAIWAN PROVINCE OF CHINA
upvote