Answer:
Computational thinking skills basically provide the ability and capability to lean the computer programming language and its also plays an important role in the software designing process. It also helps in improve the quality of various types of software application in programming world.
The computational thinking provide various types of benefits in the software application is that it breaks the complex system problem into the small parts so that it can easily managed.
It helps on focusing only on the important and effective information or data and ignore the irrelevant information in the software designing process and applications.
I need this answer too can someone please help us out with the right answer ?!
Explanation:
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_VALS = 4;
vector<int> testGrades(NUM_VALS);
int i = 0;
int sumExtra = -9999; // Assign sumExtra with 0 before your for loop
testGrades.at(0) = 101;
testGrades.at(1) = 83;
testGrades.at(2) = 107;
testGrades.at(3) = 90;
/* Your solution goes here */
sumExtra = 0;
for(i = 0; i <= testGrades.size() -1; i++){
if(testGrades.at(i) > 100){
sumExtra = sumExtra + (testGrades.at(i) - 100);
}
}
cout << "sumExtra: " << sumExtra << endl;
return 0;
}
Explanation:
Looks like you almost solved the question. I highlighted the parts you have been missing above.
In order to use vectors in C++, you need to add the vector library at the beginning of the program, #include <vector>
In order to initialize the vector, you need to specify its type inside <int>, since we work with the integers in the question the type must be <em>int</em>
Templates help Nathan to create multiple worksheets with common styles. He needs to save them with the xls extension.
I’m not sure what you asking you have a picture ?