Answer:
Mars loses its atmosphere faster, because there's less gravity to hold on to it. It goes through the loss of atmosphere faster than earth does
Explanation:
Answer:
Weekend
Explanation:
Scratch is a type of programming language that is block-based and has children as its target audience. With this, users can make online projects using the program interface.
The name of the first program created using Scratch was created and named Weekend.
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>
Answer:
Having.
Explanation:
When we are working with Select statements like COUNT(CustomerID).We should use Having clause because functions like (SUM,COUNT,AVG etc) are aggregate functions and we cannot use where clause with aggregate functions.That's why we use Having clause with aggregate functions.
for example:-
select COUNT(CustomerID),state_of_residence
from Customers
GROUP BY state_of_residence
HAVING COUNT(CustomerID)>10;
Answer:
so operating costs, training requirements, added features
Explanation:
Because it is asking for things that affect the COST(money)