Answer:
i aint looking at random pictures bro, i dont know what might be on them
Explanation: ok
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables Declaration and initialization
int no_gallon=16;
int dis=312;
// find the miles per gallon
double mile_gallon=dis/double(no_gallon);
// print the results
cout<<"number of gallons: "<<no_gallon<<endl;
cout<<"distance travel before refueling: "<<dis<<endl;
cout<<"miles per gallon is: "<<mile_gallon<<endl;
return 0;
}
Explanation:
Declare and initialize the number of gallon and distance travel without refueling. Calculate the miles per gallon by dividing distance with number of gallons.Then print the results.
Output:
number of gallons: 16
distance travel before refueling: 312
miles per gallon is: 19.5
<span>Financial transactions were one of the first purposes of computers. This is where "ticker tapes" came from; early computers were used to keep track of how stocks were performing. Computers in early days used large mainframe systems and punch cards to keep track of this type of data.</span>
In the case above, The asterisk helps database or tell it to select all data that meets the criteria as stated in the query.
<h3>What does asterisk (*) mean in SQL?</h3>
The term means all columns. Note that The asterisk or star symbol ( * ) is a term that implies all columns in a given database.
Therefore, In the case above, The asterisk helps database or tell it to select all data that meets the criteria as stated in the query.
Learn more about asterisk from
brainly.com/question/1620017
#SPJ11