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 11

Correct the following code so that it correctly sets the value of each element of myList to the index of the element. int myList[10]; for (int i = 1; i <= 10; i--) myList[i] = [i];

Problem 12

Correct the following code so that it correctly initializes and outputs the elements of the array myList. int myList[10]; for (int i = 1; i <= 10; i++) cin >> myList; for (int i = 1; i <= 10; i++) cout << myList[i] << " "; cout << endl;

Problem 13

What is array index out of bounds? Does C++ check for array indices within bounds?

Problem 14

Suppose that scores is an array of 10 components of type double, and: scores = {2.5, 3.9, 4.8, 6.2, 6.2, 7.4, 7.9, 8.5, 8.5, 9.9} The following is supposed to ensure that the elements of scores are in nondecreasing order. However, there are errors in the code. Find and correct the errors. for (int i = 1; i <= 10; i++) if (scores[i] >= scores[i + 1]) cout << i << " and " << (i + 1) << " elements of scores are out of order." << endl;

Problem 15

Write C++ statements to define and initialize the following arrays. a. Array heights of 10 components of type double. Initialize this array to the following values: 5.2, 6.3, 5.8, 4.9, 5.2, 5.7, 6.7, 7.1, 5.10, 6.0. b. Array weights of 7 components of type int. Initialize this array to the following values: 120, 125, 137, 140, 150, 180, 210. c. Array specialSymbols of type char. Initialize this array to the following values: '$', '#', '%', '@', '&', '! ', '^'. d. Array seasons of 4 components of type string. Initialize this array to the following values: "fall", "winter", "spring", "summer".

Problem 16

Determine whether the following array declarations are valid. If a declaration is valid, determine the size of the array. a. int list[] = {18, 13, 14, 16}; b. int x[10] = {1, 7, 5, 3, 2, 8}; c. double y[4] = {2.0, 5.0, 8.0, 11.0, 14.0}; d. double lengths[] = {8.2, 3.9, 6.4, 5.7, 7.3}; e. int list[7] = {12, 13, , 14, 16, , 8}; f. string names[8] = {"John","Lisa", "Chris", "Katie"};

Problem 17

Suppose that you have the following declaration: int list[7] = {6, 10, 14, 18, 22}; If this declaration is valid, what is stored in each components of list

Problem 18

Consider the following declaration: int list[] = {3, 8, 10, 13, 6, 11}; a. Write a C++ code that will output the value stored in each component of list. b. Write a C++ code that will set the values of the first five components of list as follows: The value of the ith component is the value of the ith component minus three times the value of the (i+1)th component.

Problem 19

include using namespace std; int main() { int beta[7] = {3, 5}; for (int i = 2; i < 7; i++) { beta[i] = 3 * i +… # What is the output of the following C++ code? #include using namespace std; int main() { int beta[7] = {3, 5}; for (int i = 2; i < 7; i++) { beta[i] = 3 * i + 2; beta[i - 1] = beta[i - 1] + beta[i]; beta[i - 2] = beta[i - 2] + beta [i - 1]; } for (int i = 0; i < 7; i++) cout << beta[i] << " "; cout << endl; return 0; }

Problem 20

include using namespace std; int main() { int list1[5]; int list2[15]; for (int i = 0; i < 5; i++) list1[i] = i… # What is the output of the following C++ code? #include using namespace std; int main() { int list1[5]; int list2[15]; for (int i = 0; i < 5; i++) list1[i] = i * i - 2; cout << "list1: "; for (int i = 0; i < 5; i++) cout << list1[i] << " "; cout << endl; for (int i = 0; i < 5; i++) { list2[i] = list1[i] * i; list2[i + 5] = list1[4 - i] + i; list2[i + 10] = list2[9 - i] + list2[i]; } cout << "list2: "; for (int i = 0; i < 7; i++) cout << list2[i] << " "; cout << 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