Looking for Об'єктно-орієнтоване програмування (1 курс КН) test answers and solutions? Browse our comprehensive collection of verified answers for Об'єктно-орієнтоване програмування (1 курс КН) at moodle.chnu.edu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
(C++)
(C++)
try
{}
catch (a) {}
catch (b) {}
catch (...) {}
catch (c) {}
catch (d) {}
(C++)
(C++)
(C++)
1: template <class Т> class А {
2: int х;
3:};
4: template <class Т> class А <Т *> {
5: long х;
6:};
7: template <template <class U> class V> class C {
8: V <int> y;
9: V <int *> z;
10:};
11: C <A> c;
(C++)
template <class A > class Array {/ * ... * /};
Array <int > x1;
Array <int > x2;
Array <char > x3;
Array <short > x4;
Які з наступних операторів не містять помилки:
(C++)
(C++)
(C++)
template <class A, int n > class my_template {A x [n]; / * ... * /};
my_template <char, 20 > y1;
my_template <int, 20 > y2;
my_template <char, 30 > y3;
my_template <int, 20 > y4;
Який з наступних операторів не містить помилки:
(C++)