Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Problem 2

Write \(\mathrm{C}++\) statements that do the following: a. Define an enum type, courseType, with the values ALGEBRA, BEGINNING SPANISH, ASTRONOMY, GBNBRAL CHBMISTRY, PHYSICS, and LOGIC. b. Declare a variable newClass of the type courseType. c. Assign ASTRONOMY to the variable newClass. d. Advance newClass to the next value in the list. e. Output the value of the variable newClass. f. Input value in the variable newClass.

Problem 3

Given: enum currencyType \\{DOLLAR, POUND, FRANK, LIRA, MARK); currencyType currency; which of the following statements are valid? a. currency = DOLIAR b. \(\quad\) cin \(>>\) currency c. currency \(=\operatorname{static}_{-}\) cast \(\langle\text {currencyType }>(\text { currency }+1)\) d. for (currency = DOLLAR; currency \(<=\) MARK; currencyt+) cout \(<<\) "*";

Problem 8

Define an enumeration type triangleType with values EQUILATERAL, RIGHT, ISOSCELES, and SCALENE. Also declare the variable triangle of type triangleType while defining this type.

Problem 10

include // int main() // { // int num = 5; // std::cout << "num = " << num << endl; // return 0; // } # What is wrong with the following program? #include // int main() // { // int num = 5; // std::cout << "num = " << num << endl; // return 0; // }

Problem 11

include // using namespace sdt; // int main() // { // int x; // std::cin >> x; // cout << "x = " << x << endl; // r… # What is wrong with the following program? #include // using namespace sdt; // int main() // { // int x; // std::cin >> x; // cout << "x = " << x << endl; // return 0; // }

Problem 13

include // namespace aaa // { const int X = 0; // double y; // } using namespace std; // int main() // { y = 34.50;… # What is wrong with the following program? #include // namespace aaa // { const int X = 0; // double y; // } using namespace std; // int main() // { y = 34.50; // cout << "X = " << X << ", y = " << y << endl; // return 0; // }

Problem 14

include // #include // using std; // int main() // { // std::cout << pow(3, 4.0) << endl; // return 0; // } # What is wrong with the following program? #include // #include // using std; // int main() // { // std::cout << pow(3, 4.0) << endl; // return 0; // }

Problem 15

Consider the following C++ code: string str1; string str2; char ch; int index; cin >> str1; cin >> str2; cin >> index; ch = str1[index]; str1[index] = str2[index]; str2[index] = ch; cout << str1 << " " << str2 << endl; Answer the following questions: a. What is the output if the input is Hello There 2? b. What is the output if the input is Diamond Gold 0? c. What is the output if the input is C++ Java 1?

Problem 16

Suppose that you have the following statements: string str1, str2; cin >> str1 >> str2; if (str1 == str2) cout << str1 + '!' << endl; else if (str1 > str2) cout << str1 + " > " + str2 << endl; else cout << str1 + " < " + str2 << endl; Answer the following questions: a. What is the output if the input is Programming Project? b. What is the output if the input is Summer Trip? c. What is the output if the input is Winter Cold?

Problem 17

include #include using namespace std; int main() { string str1 = "Trip to Hawaii"; string str2 = "Summe… # What is the output of the following program? #include #include using namespace std; int main() { string str1 = "Trip to Hawaii"; string str2 = "Summer or Fall"; string newStr; newStr = str2 + ' ' + str1; 500 | Chapter 7: User-Defined Simple Data Types, Namespaces, and the string Type C7952_CH07 cout << newStr << endl; cout << str1 + " in " + str2 << endl; cout << newStr.length() << endl; cout << str1.find('H') << endl; cout << str2.find("or") << endl; cout << newStr.substr(10, 19) << endl; cout << newStr.replace(23, 6, "******") << endl; string str = "C++ Programming"; cout << str << endl; cout << str.length() << endl; str[0] = 'J'; str[2] = '$'; cout << str << endl; return 0; }

Access millions of textbook solutions in one place

  • Access over 3 million high quality textbook solutions
  • Access our popular flashcard, quiz, mock-exam and notes features
  • Access our smart AI features to upgrade your learning
Get Vaia Premium now
Access millions of textbook solutions in one place

Recommended explanations on Computer Science Textbooks