100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.6 TrustPilot
logo-home
Exam (elaborations)

CPP Advanced Programming in C++ Cisco Chapter 6 Assessment

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

CPP Advanced Programming in C++ Cisco Chapter 6 Assessment

Institution
Course

Content preview

[CPP] Chapter 6 Assessment
Attempt History
Attempt Time Score

KEPT Attempt 2 13 minutes 28.67 out of 30

LATEST Attempt 2 13 minutes 28.67 out of 30

Attempt 1 17 minutes 27.67 out of 30
Correct answers are hidden.
Score for this attempt: 28.67 out of 30
Submitted Dec 26 at 8:29pm
This attempt took 13 minutes.

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

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




runtime error at LINE II



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

,compilation error in LINE II



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



compilation error in LINE I



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



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



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

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




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

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



runtime error at LINE II



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



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



compilation error in LINE I



compilation error in LINE II



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

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

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



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



compilation error in LINE I



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



compilation error in LINE II



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



runtime error at LINE II



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

#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
void printer(int i) {
cout << i << ", ";
}
int main() {
int mynumbers1[]={ 3, 9, 0, 2};
int mynumbers2[]={6, 1, 4, 5};
vector<int> v1(14);
vector<int> v2(34);
sort(mynumbers2, mynumbers2 + 4);
sort(mynumbers1, mynumbers1 + 4);

Written for

Course

Document information

Uploaded on
September 2, 2022
Number of pages
37
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
Both online and in 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 tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right 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 aced it. It really can be that simple.”

Alisha Student

Frequently asked questions