Question

What is the output of the following code? (Note that there are no endl's, all output...

What is the output of the following code? (Note that there are no endl's, all output is on a single line)
      
string s = "Super!";

cout << s.size() << '-';
cout << s.find("er") <<'-';
cout << s.at(3) << '-';
cout << s.erase(2, 1) << '-';
cout << s.insert(2, "wow") << '-';
cout << s.substr(2, 3) << endl;

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Output:  6-3-e-Suer!-Suwower!-wow

Explanation:

String S u p e r !
Index 0 1 2 3 4 5
  • s.size() ==> returns size of string "Super!" which is equal to 6.
  • s.find("er")==>returns the location where string "er" starts. So it outputs 3.
  • s.at(3) ==> returns value at index 3 which is e.
  • s.erase(2, 1) =>erases characters starting with index 2 and 1 indicates number of characters needs to be erased. (2,1) indicates erase characters staring from 2 and 1 indicates erase only character. So it returns "suer!"
String S u e r !
Index 0 1 2 3 4
  • s.insert(2, "wow") ==>inserts string "wow" at index 2. Which returns "Suwower!"
String S u w o w e r !
Index 0 1 2 3 4 5 6 7
  • s.substr(2, 3) ==>returns substring of length 3 starting from index 2. So it returns wow
Add a comment
Know the answer?
Add Answer to:
What is the output of the following code? (Note that there are no endl's, all output...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 1)What is the output of the following code: int i = 10; do { cout <<...

    1)What is the output of the following code: int i = 10; do { cout << i; i++; } while (i < 5); cout << "-done"; 2)What is the output of the following code (note there are no endl's, all output is on single line)? for (int i = 1; i <= 3; i++) {    cout << '(';    for (int j = 0; j < (i*2); j++)        cout << 'x';    cout << ')'; }

  • A. What is the output of the following C++ code fragment? (all variables are of type...

    A. What is the output of the following C++ code fragment? (all variables are of type int) int count-1; int y-100; while (count 3) y=y-1 ; count+t cout << y << endl; cout<< count <<endl What is the value of x after control leaves the following while loop? (all variables are of type int) B. int x0 while (x < 20) sum- sum+x cout << sum<< endl;

  • What is the output of the following code snippet? (If there is some kind of syntax...

    What is the output of the following code snippet? (If there is some kind of syntax error indicate this by marking "error" in your answer choice) 1.        int laps = 8;        if (laps++ > --laps)               laps += 2;        else if (--laps > (laps - 1))               laps += 4;        else if (++laps)               laps -= 3;        cout << laps << endl; 2. What is the output of the following code snippet?     int j = 47;     int i = 8;     j =...

  • What is the output from each of the following segments of C++ code? Record the output...

    What is the output from each of the following segments of C++ code? Record the output after the “Answer” prompt at the end of each program fragment. Assume all variables have been suitably declared. (Each problem is worth 3 points.) 1. for (int j = 25; j > 16; j -= 3)        cout << setw(5) << j;     Answer: 2. int sum = 0;       for (int k = -2; k <= 2; k++)         sum = sum +...

  • It's a C++ code. 2. Answer the following questions in a word document. 6. What is...

    It's a C++ code. 2. Answer the following questions in a word document. 6. What is the output of the following C++ code? (2, 3) int inti - 26 int int2 = 45; int intPtr - Einti; int int2Ptr - Gint2: intPtr -89; int2Ptr - 623 intiptr - int2Ptr intPtr - 80 intl -57 cout << inti «..« int2 << endl; cout << *intiptr «« int2Ptr << endl; 7. Given the following statements: int num; int numPtr write C++ statements...

  • What is the output of the following code? int num = 17;                           //Line 1 double...

    What is the output of the following code? int num = 17;                           //Line 1 double gpa = 3.85;                  //Line 2 bool done;                               //Line 3 done = (num == static_cast<int>( (2 * gpa + 9.3)));    //Line 4 cout << "The value of done is: "<< done << endl;     //Line 5

  • C++ Given the following recursive function: string mystery(strings) { == == if ($ "") return "";...

    C++ Given the following recursive function: string mystery(strings) { == == if ($ "") return ""; if (toupper(s[ 0 ]) 'A' || toupper(s[ 0 ]) || toupper(s[ 0 ]) 'I' || toupper(s [ 0 ]) || toupper(s [ 0 ]) 'U') 'E' 'O' == == == { return s.substr(0, 1) + mystery(s.substr(1, s.size() 1)); } return + mystery(s.substr(1, s.size() - 1)); } Show all the calls to the function and what each one returns to its predecessor. string result =...

  • QUESTION 1 What is the output of the following code snippet? int main() { bool attendance...

    QUESTION 1 What is the output of the following code snippet? int main() { bool attendance = false; string str = "Unknown"; attendance = !(attendance); if (!attendance) { str = "False"; } if (attendance) { attendance = false; } if (attendance) { str = "True"; } else { str = "Maybe"; } cout << str << endl; return 0; } False True Unknown Maybe QUESTION 2 What is the output of the following code snippet? #include <iostream> #include <string> using...

  • 51. What is the output of the following code snippet? int number = 0; int ptr_num...

    51. What is the output of the following code snippet? int number = 0; int ptr_num -&number ptr_num 60; number-80 cout < "ptr num << endl b, 60 c. 80 d. the address of number Answer 52. What is the output of the following code snippet? double num-0.0; double* ptr = &num; num = 15.0; ptr ptr 15.0 cout << num <<"ptr <<endl; a. 15 15 b. 15 30 С. 30 15 d. 30 30 Answer: 53. What is the...

  • What is the output from each of the following segments of C++ code? Record the output...

    What is the output from each of the following segments of C++ code? Record the output after the “Answer” prompt at the end of each program fragment. Assume all variables have been suitably declared. (Each problem is worth 3 points.) for (int k = 2; k < 5; k++)                    {       for (int j = 3; j < 6; j++)      cout << setw(4) << (k + j) << " ";       cout << endl;    }

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT