100% satisfaction guarantee Immediately available after payment Read online or as PDF No strings attached 4.6 TrustPilot
logo-home
Exam (elaborations)

CPP Advanced Programming in C++ Cisco Chapter 4 Assessment

Rating
-
Sold
-
Pages
34
Grade
A+
Uploaded on
02-09-2022
Written in
2021/2022

CPP Advanced Programming in C++ Cisco Chapter4 Assessment

Institution
Module

Content preview

CHAPTER 4 - STL
Attempt History
Attempt Time Score

KEPT Attempt 2 26 minutes 26 out of 27

LATEST Attempt 2 26 minutes 26 out of 27

Attempt 1 24 minutes 23.5 out of 27
Correct answers are hidden.
Score for this attempt: 26 out of 27
Submitted Dec 24 at 9:50pm
This attempt took 26 minutes.

Question 1
pts
What will happen when you attempt to compile and run the following code?

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
void printer(int i) {
cout << i << ", ";
}
int main() {
int mynumbers[] = { 3, 9, 0, 2, 1, 4, 5 };
vector<int> v1(mynumbers, mynumbers + 7);
copy(mynumbers, mynumbers + 7, v1.end());//LINE I
for_each(v1.begin(), v1.end(), printer);//LINE II
return 0;
}




program outputs: 3, 9, 0, 2, 1, 4, 5,



program outputs: 3, 9, 0, 2, 1, 4,



runtime error at LINE I

,program outputs: 0, 1, 2, 3, 4, 5, 9,



compilation error in LINE I



runtime error at LINE II



compilation error in LINE II



Question 2
pts
What will happen when you attempt to compile and run the following code?

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
void printer(int i) {
cout << i << ", ";
}
int main() {
int mynumbers[] = { 3, 9, 0, 2, 1, 4, 5 };
vector<int> v1(mynumbers, mynumbers + 7);
copy_backward(mynumbers, mynumbers + 7, v1.rend());//LINE I
for_each(v1.begin(), v1.end(), printer);//LINE II
return 0;
}




runtime error at LINE II



compilation error in LINE I



program outputs: 3, 9, 0, 2, 1, 4,

,program outputs: 5, 4, 1, 2, 9, 0,



compilation error in LINE II



runtime error at LINE I



program outputs: 5, 4, 1, 2, 0, 9, 3,



program outputs: 3, 9, 0, 2, 1, 4, 5,



Question 3
pts
What will happen when you attempt to compile and run the following code?

#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
using namespace std;
void printer(int i) {
cout << i << ", ";
}
int main() {
int mynumbers[] = { 3, 9, 0, 2, 1, 4, 5 };
set<int> s1(mynumbers, mynumbers + 7);
vector<int> v1(s1.rbegin(), s1.rend());
swap(s1, v1);//LINE I
for_each(v1.begin(), v1.end(), printer);//LINE II
return 0;
}




program outputs: 0, 1, 2, 3, 4, 5, 9,

, program outputs: 3, 9, 0, 2, 1, 4,



program outputs: 0, 1, 2, 3, 4, 5,



compilation error in LINE I



runtime error at LINE II



runtime error at LINE I



compilation error in LINE II



program outputs: 3, 9, 0, 2, 1, 4, 5,



Question 4
pts
What will happen when you attempt to compile and run the following code?

#include <iostream>
#include <algorithm>
#include <vector>
#include <deque>
using namespace std;
void printer(int i) {
cout << i << ", ";
}
int main() {
int mynumbers[] = { 3, 9, 0, 2, 1, 4, 5 };
deque<int> d1(mynumbers, mynumbers + 7);
vector<int> v1(d1.rbegin(), d1.rend());
swap_ranges(v1.begin(), v1.end(), d1.begin());//LINE I
sort(d1.begin(), d1.end());//LINE II

Written for

Module

Document information

Uploaded on
September 2, 2022
Number of pages
34
Written in
2021/2022
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$5.49
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Read online or as PDF
No strings attached

Get to know the seller
Seller avatar
arviemontemayor

Also available in package deal

Get to know the seller

Seller avatar
arviemontemayor AMACC
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
3 year
Number of followers
0
Documents
39
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Trending documents

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these revision notes.

Didn't get what you expected? Choose another document

No problem! You can straightaway pick a different document that better suits what you're after.

Pay as you like, start learning straight away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and smashed it. It really can be that simple.”

Alisha Student

Frequently asked questions