logo

Crowdly

Browser

Add to Chrome

Course 58

Looking for Course 58 test answers and solutions? Browse our comprehensive collection of verified answers for Course 58 at courses.apriorit.com.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

#include <iostream>#include <stdexcept> void Foo() noexcept{    throw std::runtime_error("oops");} int main(){    try    {        Foo();    }    catch (...)    {        std::cout << "caught";    }}
100%
0%
0%
0%
View this question

#include <iostream> int main(){    int x = 2147483647; // INT_MAX    std::cout << (x + 1);}

100%
0%
0%
0%
View this question

const int* p1;  // Aintconst p2;  // B

0%
0%
100%
0%
View this question

Римські цифри представлені наступними символами:

I1
V5
X10
L50
C100
D500
M1000

Зазвичай менше значення іде після більшого: VIII = 8XII = 12. Але є 6 виключень де менше значення стоїть перед більшим - тоді воно віднімається:

  • IV = 4, IX = 9
  • XL = 40, XC = 90
  • CD = 400, CM = 900

Написати функцію, яка конвертує рядок із римським числом у десяткове ціле.

Гарантується, що вхідний рядок є валідним римським числом у діапазоні [1, 3999].

View this question

const std::string& GetGreeting(){    std::string s = "Hello";    return s;} int main(){    const std::string& ref = GetGreeting();    std::cout << ref;}

0%
0%
0%
100%
View this question

Посилання: https://assessment.corporate.ef.com/public/test/d19cf15c-fc35-4d8c-8b20-75b9514e6b5d

100%
0%
View this question

Want instant access to all verified answers on courses.apriorit.com?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome