b. Menu folder
c. File folder
d. File directory
Answer: The answer is d: File directory.
The organizational structure of the files and folders on a computer is the file directory.
Explanation: File directory refers to organizational unit in which files and folders are arranged or organized.
A directory represents a folder of other files. It can as well contain other directories known as subdirectories. Subdirectories are directories that contain another directory. Directories are used to organize files within a storage device like SSD.
currency
B.
percentages
C.
decimals
D.
all of these
the answer is D. just took a test
all of these
Answer:
int monthOfYear=11;
long companyRevenue=5666777;
int firstClassTicketPrice=6000;
long totalPopulation=1222333;
Explanation:
Here we have declared four variable monthOfYear , companyRevenue, firstClassTicketPrice , totalPopulation as int ,long, int and long type .We have declared companyRevenue,totalPopulation as long type because it exceed the range of integer.
Following are the program in c language
#include <stdio.h> // header file
int main() // main function
{
int monthOfYear=11; // variable
long companyRevenue=5666777; //variable
int firstClassTicketPrice=6000;//variable
long totalPopulation=1222333;//variable
printf("%d\n%ld\n%d\n%ld",monthOfYear,companyRevenue,firstClassTicketPrice,totalPopulation); // display value
return 0;
}
Output:
11
5666777
6000
1222333