Hi there!
A audit trial is a report of changes that have been obtained to a file or some kind of database.
Hope this helped!~
Answer:
A Larger Market
Customer Insights Through Tracking And Analytics
Fast Response To Consumer Trends And Market Demand
Lower Cost
More Opportunities To "Sell"
Personalized Messaging
Hope this helps!
Answer: Bios chip which starts the motherboard check
Explanation: the BIOS (pronounced bye-oss) is a ROM chip found on motherboards that allows you to access and set up your computer system at the most basic level.
Answer:
The correct option is B
B. How many states have a higher percentage of female computer science majors than male computer science majors attending college in that state?
Explanation:
A.We can not analyze that students majoring in computer science tend to have higher grade point averages than students majoring in other subjects because we are only given data sets about computer science not about other majoring subject students
B. Because data set contains attributes of gender and state so we can easily analyze that how many states have a higher percentage of female computer science majors than male computer science majors attending college in that state.
C.We can not analyze that what percent of students attending college in a certain state are majoring in computer science because data sets doesn't contain any information about students other computer science students.
D. We can not analyze that which college has the highest number of students majoring in computer science because data sets doesn't contain attribute of college name.
Answer:
#include <iostream>
using namespace std;
void printmultiples(int n) //function to print first five multiples between 3168 and 376020
{
int a =3168,c=1;
cout<<"First five multiples of "<<n<<" are : ";
while(a%n!=0 && a<=376020) //finding first mutiple of n after 3168.
{
a++;
}
while(c<6)//printing multiples.
{
cout<<a<<" ";
a+=n;
c++;
}
cout<<endl;
}
int main() {
int t,n;
cin>>t;//How many times you want to check.
while(t--)
{
cin>>n;
printmultiples(n);//function call..
}
return 0;
}
Input:-
3
15
43
273
Output:-
First five multiples of 15 are : 3180 3195 3210 3225 3240
First five multiples of 43 are : 3182 3225 3268 3311 3354
First five multiples of 273 are : 3276 3549 3822 4095 4368
Explanation:
I have used a function to find the first five multiples of the of the numbers.The program can find the first five multiples of any integer between 3168 and 376020.In the function I have used while loop.First while loop is to find the first multiple of the integer n passed as an argument in the function.Then the next loop prints the first five multiples by just adding n to the first multiple.
In the main function t is for the number of times you want to print the multiples.In our case it is 3 Then input the integers whose multiples you want to find.