Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

C++ Institute Exam CPP Topic 7 Question 86 Discussion

Actual exam question for C++ Institute's CPP exam
Question #: 86
Topic #: 7
[All CPP Questions]

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

#include

#include

#include

using namespace std;

int main () {

int t[] = {1,2,3,3,5,1,2,4,4,5};

vector v (t,t+10);

vector::iterator it = v.begin();

while ( (it = adjacent_find (it, v.end())) != v.end()) {

cout<

}

cout<< endl;

return 0;

}

Show Suggested Answer Hide Answer
Suggested Answer: E

Contribute your Thoughts:

Dalene
3 months ago
I bet the correct answer is a compilation error. I mean, come on, who writes code like this? It's like a riddle wrapped in a mystery inside an enigma.
upvoted 0 times
...
Gabriele
3 months ago
Hold on, is this the real life? Or is this just fantasy? I'm so confused, I think I need to go take a nap and come back to this question later.
upvoted 0 times
Bethanie
1 months ago
User1: Thanks for the info, I'll check it out later.
upvoted 0 times
...
Georgene
2 months ago
User3: The answer is B) program outputs: 2 7
upvoted 0 times
...
Alishia
2 months ago
User2: Yeah, sometimes a nap can help clear your mind.
upvoted 0 times
...
Huey
2 months ago
User1: Don't worry, just take a break and come back later.
upvoted 0 times
...
...
Lea
3 months ago
Wait, is this a trick question? I'm pretty sure the program will run forever because the while loop never terminates. It's like an infinite loop of finding adjacent duplicates!
upvoted 0 times
Mignon
2 months ago
E) program will run forever
upvoted 0 times
...
Cassie
2 months ago
C) program outputs: 3 8
upvoted 0 times
...
Kris
3 months ago
B) program outputs: 2 7
upvoted 0 times
...
Lorean
3 months ago
A) program outputs: 2 3
upvoted 0 times
...
...
Tawanna
4 months ago
I think the output will be 3 8, because the adjacent_find function will return the iterator pointing to the second pair of duplicates, which is the second 4 in the vector.
upvoted 0 times
Matthew
3 months ago
D) compilation error
upvoted 0 times
...
Cassi
3 months ago
C) program outputs: 3 8
upvoted 0 times
...
Irma
3 months ago
B) program outputs: 2 7
upvoted 0 times
...
Rosita
4 months ago
A) program outputs: 2 3
upvoted 0 times
...
...
Julieta
4 months ago
I'm not sure, but I think the answer might be B) program outputs: 2 7 because the iterator is incremented by 1 each time.
upvoted 0 times
...
Lashonda
4 months ago
I agree with Tiffiny, because the code uses adjacent_find to find the first occurrence of two adjacent elements that are equal.
upvoted 0 times
...
Malcolm
4 months ago
The output will be 2 7, since the adjacent_find function will return the first iterator pointing to the first duplicate element, which is the second 3 in the vector.
upvoted 0 times
Billy
3 months ago
D) compilation error
upvoted 0 times
...
Terrilyn
3 months ago
C) program outputs: 3 8
upvoted 0 times
...
Curt
3 months ago
B) program outputs: 2 7
upvoted 0 times
...
Bobbie
4 months ago
A) program outputs: 2 3
upvoted 0 times
...
...
Tiffiny
5 months ago
I think the correct answer is A) program outputs: 2 3.
upvoted 0 times
...

Save Cancel