I am writing to apply ... the post advertised in today's newspaper.
Match the acronym with its meaning
When you start a letter with "Dear Sir/Madam", you close it with...
What is the translation for '2nd Bachillerato' in the UK?
Match the sentences with the paragraph where they are usually used.
The addresser's name goes under his/her signature.
Dado el siguiente programa, ¿qué afirmación es cierta?
1#include <iostream> 2class test {3public:4 test(bool b) noexcept : b_{b} {}5 void func() noexcept6 {7 if (!b_) throw "Error en test::func";8 }9private:10 bool b_;11}; 12int main() try13{14 test t(false);15 t.func();16 std::cout << "Fin del programa" << std::endl;17} catch (const char* ex) {18 std::cerr << ex << std::endl;19} ¿En qué medida afecta la eficiencia a la corrección de un programa?
Dado el siguiente programa, ¿qué afirmación es cierta?
1#include <iostream> 2class test {3public:4 class Fallo{};5 test(bool b) noexcept : b_{b} {}6 ~test() noexcept(false) { if (!b_) throw Fallo(); }7 void func() { if (!b_) throw Fallo(); }8private:9 bool b_;10}; 11int main() try12{13 test t(false);14 t.func();15 std::cout << "Fin del programa" << std::endl;16} catch (const test::Fallo& ex) {17 std::cerr << "Fallo detectado" << std::endl;18} Dado el siguiente programa, ¿que afirmación es cierta?
1#include<iostream> 2struct test {3 test() noexcept {}4 void func() { int i = 20; throw &i; }5}; 6int main ()7{8 try {9 test t;10 t.func();11 } catch (const int& ex) {12 std::cerr << "Excepción capturada" << std::endl;13 }14 std::cout << "Fin del programa" << std::endl;15}