It is 
Select an appropriate layout
Decide which current format...
Import or compose...
Proofread...
Check the print preview..
 
        
             
        
        
        
Answer:
d. A String is a class data type so a String variable holds a reference to a location in memory
It depends on which programing language or scripting language...
Explanation:
If it's Java then D is the correct answer...
 
        
             
        
        
        
Answer: 
The mass media is a huge phenomenon. Through the various different platforms, print or broadcast, the media is able to reach millions of people like no other force. Without the media, powerful speeches by politicians would affect no one, local events would remain local, and performances by great actors would be seen only by the people in the immediate audience. The media overcomes distances, and builds a direct relationship with the audience. Many sociologist
 
        
                    
             
        
        
        
#include <iostream>
using namespace std;
int main() {
   const int SCORES_SIZE = 4;
   int oldScores[SCORES_SIZE];
   int newScores[SCORES_SIZE];
   int i = 0;
   oldScores[0] = 10;
   oldScores[1] = 20;
   oldScores[2] = 30;
   oldScores[3] = 40;
   /* Your solution goes here */
   for (i = 0; i < SCORES_SIZE; ++i) {
      cout << newScores[i] <<" ";
   }
   cout << endl;
   return 0;
}