Answer:
Restate financial statement for the first and second year.
Prepare financial statement of year 3 reflecting the effects of error from year one and two
Explanation:
A revision of the the entire financial statement from year one will be helpfull, when this is re-stated for the first and second year. Then in stating the amount of assets and liabilities carried into year three, the cummulative effect of the error from the previous two years should be reflected.
Answer:
The answer to the following question is the option "B".
Explanation:
The term REA stands for Resources, events, agents. It is a model that provides us an accounting system. In this system, we can re-engineer for the computer age and Integrate separate REA diagrams for individual or a comprehensive organization. This process does not affect any event and agents who participate in events affecting shared resources. So the answer to this question is "none of the other entities".
Answer:
The answer is C. the bank will cancel your credit card.
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>