It's B. grammar errors are blue and autocorrect suggestions produce a small dialog box. I'm unsure what D is, but it's not an underline.
Answer:
Smart
Explanation:
The RFID or the radio frequency identification is an electronic device that stores information electronically. It stores and makes available the information which is stored electromagnetically, once the user is authenticated.
This technology is implemented in market places and other individual activities. It is implemented in cards called smart card for ease of payment transaction and promote online commerce (e-commerce). It is also implemented in smartphones.
Answer:
Mitchell ought to use telephone.
Explanation:
Because telephone is a common telecommunication garget which he can use to reach his client s easy.
Answer:
bottom line statement
Explanation:
The bottom-line statement is a solid, clear and effective starting point to use at the beginning of a formal business document.
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>