Advanced programming
CHAPTER 1 24.5 out of 30
Question 1
What will happen when you attempt to compile and run the following code?
#include <vector>
#include <iostream>
int main ()
{
std::vector<int> v1; // LINE I
_back(10); // LINE II
...
int main()
{
int tab[]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
deque<int> d1(tab, tab+10);
deque<int> d2;
deque<int>::iterator it;
for(it = d1.begin(); it != d1.end(); ++it)
{
d2.push_back(d1[d1.end()-it-1]); //LINE I
}
print(d2.rbegin(), d2.rend()) << endl; //LINE II
return 0;
}
code will not compile due to error in line LINE II /mali
the result of program execution is unpredictable or there might be runtime exception /MALI
Question 6
What will happen when you attempt to compile and run the following code?
, #include <deque>
#include <iostream>
using namespace std;
template<typename T> ostream & print(T const & start, T const & end)
{
for (T i = start; i != end; ++i)
{
cout << *i << " ";
}
return cout;
}
int main()
{
int tab[]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
deque<int> d1(tab, tab+10);
deque<int>::const_iterator it = d1.begin()+3;
d1.erase(it, it + 1);
print(d1.begin(), d1.end());
d1.clear();
cout<<d1.size()<<endl;
return 0;
}
program will run successfully and display: 1 2 3 5 6 7 8 9 10 0
Question 7
Which methods from the std::deque class can be used to check if there are elements in
the container? Choose all that apply.
MALI
1. Empty,SIZE, CLEAR(0.5POINTS)
2. THERE IS NO SUCH METHOD
3. EMPTY SIZE CLEAR IS EMPTY
Question 8
What will happen when you attempt to compile and run the following code?
#include <deque>
#include <iostream>
using namespace std;
Los beneficios de comprar resúmenes en Stuvia estan en línea:
Garantiza la calidad de los comentarios
Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!
Compra fácil y rápido
Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.
Enfócate en lo más importante
Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable.
Así llegas a la conclusión rapidamente!
Preguntas frecuentes
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
100% de satisfacción garantizada: ¿Cómo funciona?
Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.
Who am I buying this summary from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller ACADEMICAIDSTORE. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy this summary for 16,82 €. You're not tied to anything after your purchase.