The answer to this question is A. Beneficiary
Payer is the person who buy the insurance (not necessarily for themselves only, can be given to their family or friends). Insured can not only be a person, but it also can be an object (such as cars). And the giver is the company who provide the insurance service for the payer.
Answer:
Recorder
Hope this helped! I'm not 100% if this answer is correct, though
Answer:
string ** carMakes=new string*[20];
for(int i=0;i<20;i++)
{
carMakes[i]=new string[6];
}
Explanation:
The above written piece of code is in C++ and it will declare and allocate memory on the heap for a 2-D array of strings with the number of rows 20 and number of columns 6 with name of the array carMakes.
To declare a 2-D array in C++ we use new keyword.