Answer
???
Explanation:
Was this a school question?
Answer:
the answers is 3.011364 and if you need to roundnit would be 3.01
Answer: Planned data redundancy
Explanation: Planned data redundancy is the problem that occurs in the single database where the same data unit gets stored in two different places. Data redundancy can acquire unnecessary space of the database.
Planned data redundancy can effect the processing and make modification of the data difficult. It can also create the corruption in the database .Thus , the definition mentioned in the question of data redundancy.
Answer:
probably false
Explanation:
because u dont want a budget to b exact u want it completely covered
Answer:
C++.
Explanation:
int main() {
int num_days_scores;
cout<<"How many days of scores? ";
cin<<num_days_scores;
cout<<endl;
///////////////////////////////////////////////////////////////////////////
// Get scores for each day and add it to array
int score = 0;
int* score_array = new int[num_days_scores];
for (int i = 0; i < num_days_scores; i++) {
cout<<Enter score for day "<<i+1<<": ";
cin<<score;
score_array[i] = score;
}
////////////////////////////////////////////////////////////////////////////
// Calculate total of scores by traversing array
int final_score = 0;
for (int i = 0; i < num_days_scores; i++) {
final_score += score_array[i];
}
cout<<"The total score of the "<<num_days_scores<<" days is "<<final_score;
////////////////////////////////////////////////////////////////////////////
delete[] score_array;
return 0;
}