Answer:
C++.
Explanation:
void printStrings(char strings[NUM_STRINGS][STRING_LENGTH]) {
    // Multi dimension array can be traversed through multi-level loops
    for (int i = 0; i < NUM_STRINGS; i++) {
        for (int j = 0; j < STRING_LENGTH; j++) {
            cout<<"<<strings[i][j]<<";
        }
        cout<<endl;
    }
}
Output would be like this, depending on the size of NUM_STRINGS;
"One"
"Two"
"Three"
....
 
        
             
        
        
        
Answer:
Distribute -  will put all of the layers in a straight line across the image
 
        
                    
             
        
        
        
Answer:
sectors
Explanation:
hard disk contain tracks which are further divided into sectors, for storage purposes.
 
        
             
        
        
        
Answer:
Explanation:
The following code is written in Python. It creates a program that keeps printing out a menu allowing the user to create shapes. These shapes are saved in an array called shapes. Once the user decides to exit, it prints all of the shapes in the array along with their total area. The output can be seen in the attached picture below. Due to technical difficulties, I have added the code as a txt file below.