Answer:
See Explanation
Explanation:
I'll assume the question is about the use of constants in QBasic because consonants do not have any special function or usage in QBasic.
In simple terms: In QBasic, constants are used to represent elements that do not change in value during program execution.
Take for instance, you intend to use
in your program.
Its value is 
So, 3.142 will always be a constant in your program. One of the ways it can be used in a program is:
10 LET PI = 3.142
<em>The above represents a numeric constant. QBasic also have string constants.</em>
Answer:
I would have to say C.
Explanation:
Feel free to correct me if i'm wrong :)
Hope this helps
What do you need help with?
Answer:
Translate ➡️ allows the user to change words from one language to another
Smart Lookup➡️allows user to find the definition of a word or a phrase.
Thesaurus ➡️ allows the user to find the synonyms and antonyms of a word.
Explanation:
I have been able to match each took to the tasks that they perform.
In Translate, users can easily change words into a different language. That means that words in English can be translated into French, Spanish, etc., and vice versa.
In Smart Lookup, users can actually find definitions of words or phrases. Smart Lookup can be found in Microsoft Word Office.
The Thesaurus is used to find the synonyms and antonyms of words.
These tools make learning very easy and enjoyable.
Answer:
#include <stdio.h>
int main()
{
int x;
float y;
printf("Input total distance in km: ");
scanf("%d",&x);
printf("Input total fuel spent in liters: ");
scanf("%f", &y);
printf("Average consumption (km/lt) %.3f ",x/y);
printf("\n");
return 0;
}