The answer is file , related records organized by common a attribute is a field , and information in that in a record is called data
Answer: A database management system tends to support administration, development, and use of the platforms. A Relation Database Management System (RDBMS) is referred to as a type of Database Management System (DBMS) that consists of a structure(row-based table) that tends to connect data elements and also involve functions that are supposed to maintain accuracy, security, consistency and integrity of the data.
Answer:
The answer is "Option a".
Explanation:
The meets rating is also known as the best score, that's you may obtain on the website or even a content block, It addresses the reader's request in full.
- Google expresses Meets as "the findings, which are a detailed and faulty reply or reaction should be put aside".
- The ratings are usually more informative queries, which are used in the web browser, which specify the Search engine, that managed to score results.
Answer:
#include <iostream>
using namespace std;
int main()
{
cout<< rand() % 50 + 100 <<endl;
cout<<rand() % 50 + 100 <<endl;
return 0;
}
Explanation:
The rand() gives you a random number. If you use rand() % 50, it will give you a random number between 0 and 49. Since we are required to have the numbers between 100 and 149, add 100 to this expression. This way, you will have a random number between 100 and 149. Type this expression two times and use "endl" to end with a new line.