logo

Crowdly

Browser

Додати до Chrome

Check your knowledge: DEVELOPERS Tests

Шукаєте відповіді та рішення тестів для Check your knowledge: DEVELOPERS Tests? Перегляньте нашу велику колекцію перевірених відповідей для Check your knowledge: DEVELOPERS Tests в softserve.academy.

Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!

Please, write what will be the output after the execution of the next code fragment:

void main() {     int i = 0;     while (++i < 5)         cout << i;     cout << i; }

In case of compilation error please, write C, in case of runtime error please, write R.

Переглянути це питання

Please, write what will be the output after the execution of the code below.

In case of compilation error please, write C, in case of runtime error please, write R.

void main() {     char* text = "abcdef";     int i = 5;     while (text[i] != 'b')         cout << text[i--]; }

Переглянути це питання

Please, write what will be the output after the execution of the fragment of code below.

In case of compilation error please, write C, in case of runtime error please, write R.

  void main() {     string text = "abcdef";     switch (text.length()) {     case 6: cout << 1; break;     case 7: cout << 2; break;     case 8: cout << 3; break;     default:cout << 4;     } }

Переглянути це питання
Please, choose the numbers of invocations of the function swapn which will be executed without errors.

0%
100%
0%
0%
0%
Переглянути це питання

Please, write what will be the output after the execution of the fragment of code below.

In case of compilation error please, write C, in case of runtime error please, write R.

Переглянути це питання

Please, write what will be the output after the execution of the fragment of code below.

In case of compilation error please, write C, in case of runtime error please, write R.

Переглянути це питання

Please, write what will be the output after the execution of the fragment of code below.

In case of compilation error please, write C, in case of runtime error please, write R.

Переглянути це питання

Please, write what will be the output after the execution of the F() function.

In case of compilation error please, write C, in case of runtime error please, write R.

Переглянути це питання

Please, write what will be the output after the execution of the F() function.

In case of compilation error please, write C, in case of runtime error please, write R.

class A { public:     virtual void print()const { cout << "AC"; };     virtual void print() { cout << "A"; }; };  class B : public A { public:     void print()const { cout << "BC"; }     void print() { cout << "B"; } };  void F() {         const A a;     B b;     a.print();     b.print();     const A* p = &a;     p->print();     p = &b;     p -> print(); };

Переглянути це питання

Please, write what will be the output after the execution of the F() function.

In case of compilation error please, write C, in case of runtime error please, write R.

Переглянути це питання

Хочете миттєвий доступ до всіх перевірених відповідей на softserve.academy?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome