Answer: B. Personal Idea
Explanation:
Issac Newton's Law of Gravity was made by the one and only, Issac Newton.
He used his time to investigate and discover this law, so choice one, cheating is not correct. Choice three is also incorrect, because the world didn't know about this law, or so much about gravity during that time.
Thus, choice two is correct because it was created and written through his ideas.
So therefore, the answer is choice two, personal idea.
Read more on Brainly.com - brainly.com/question/10659333#readmore
Answer:
C
Explanation:
ive been doing this same one so its C
Answer:
RDS.
Explanation:
A corporation has implemented a software that conducts the number of information overwriting and deleting, which allows the newest details to be accessible whenever the information is examined. As a Software Engineer, they suggest RDS database technologies.
It is an AWS supported controlled SQL DB service that also reinforces the array type DB for the purpose to contain and maintain the information.
Answer:
#include <iostream>
#include <map>
using namespace std;
int main()
{
map<int, int> numbers;
cout << "Enter numbers, 0 to finish" << endl;
int number;
while (true) {
cin >> number;
if (number == 0) break;
numbers[number]++;
}
for (pair<int, int> element : numbers) {
std::cout << element.first << ": occurs " << element.second << " times" << std::endl;
}
}
Explanation:
One trick used here is not to keep track of the numbers themselves (since that is not a requirement), but start counting their occurrances right away. An STL map< > is a more suitable construct than a vector< >.