Answer:
int i,t = 0;
i=0; //initialize
while(i<22){
t = t + i;
cout << t;
i += 3; //increment
}
cout << endl;
Explanation:
Loops are used to execute the part of the code again and again until the condition is not true.
In the programming, there are three loop
1. for loop
2. while loop
3. do-while loop
The syntax of for loop:
for(initialize; condition; increment/decrement){
statement;
}
The syntax of while loop:
initialize;
while(condition){
increment/decrement;
}
In the while, we change the location of initializing which comes before the start of while loop, then condition and inside the loop increment/decrement.
A should be correct i think
Answer:
Coding is a skill where you take instructions (the steps in a task) and translate it into a languaage.
Explanation:
Coding is a skill where you take instructions (the steps in a task) and translate it into a language the computer understands since computers do not communicate like humans. They communicate in a language called BINARY and
Answer:
A(n) <u>Data Warehouse</u> is a central repository that contains stored or archived data gathered from multiple databases.
Explanation:
A data warehouse is also database that is considered as central database of the company, where data of whole company is gathered and stored from multiple databases of the company. It also contains the archived data of the company that could be needed in future.
For Example
A company has several branches and franchises, each of place having own database to store the relevant information about that particular platform. The company has its own database that is linked with all platform's databases of the company. This central database is called data warehouse that gathers data from all sub data bases to analyze the operations and services of the company at different places. This database contains archive data of different databases of the company.