Answer:
An author's qualifications are important in determining whether a media source is;
Credible
Explanation:
In order to find out about the credibility of an author, the preface, forward, and or introduction including the book's back cover should be checked for the author's credentials, qualifications and areas where the author is an expert
The author's credential can also be checked by finding out about other books the author has written and also about the author's biography.
Answer: A formula is an expression which calculate the value of a cell .A funcation is a predefined formula that performs calculations using specific values in particular order.According to context of excel.
I believe the correct answer would be A. Hope this helped!
-TTL
To lock multiple rows (starting with row 1), select the row below the last row you want frozen, choose the View tab, and then click Freeze Panes. To lock multiple columns, select the column to the right of the last column you want frozen, choose the View tab, and then click Freeze Panes<span>.
I hope my answer has come to your help. Thank you for posting your question here in Brainly. We hope to answer more of your questions and inquiries soon. Have a nice day ahead!
</span>
Answer:
// Program is written in C++
// Comments are used for explanatory purpose
// Program starts here
#include<iostream>
using namespace std;
int main()
{
// Declare variables
int digits [10]; int num;
int sum = 0; int average;
for(int I = 0; I<10; I++)
{
cout<<"Please enter an unsigned number: ";
input: cin>>num;
if(num>4,294,967,296 || num < 0)
{
cout<<"You did not enter an unsigned number or your number was too big.";
cout<<'\n'<<"Please try again: ";
goto input;
}
digits[I] = num;
// Calculate Sum
sum+=digits[I];
}
// Output numbers
cout<<"You entered the following numbers"<<'\n';
for(int j = 0;j<10;j++)
cout<<digits[j]<<" ";
// Calculating Average
average = sum/10;
// Output Sum
cout<<"The sum of these numbers is: "<<sum;
// Output Average
cout<<"The average is: "<<average;
return 0;
}
Explanation: