Answer:
Interpreter is the correct answer for the above question.
Explanation:
- The interpreter is a software program which is an example of a translator and it does not take whole code at a time for conversion. It converts the code on a line by line sequence. It takes some small code and then converts it into machine code.
- While the other translator takes the whole code at a time and converts it into machine code.
- The above question wants to ask about that technology which is used to convert some small code not the whole code at a time then the answer is an interpreter which is defined as above.
The CPU converts numbers into information
It goes on through a series of 1’s and zeros
CPU stands for central processing unit
Answer:
B.22
Explanation:
I know this because 22 is normally a port that hosts a protocol with an encrypted connection
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