To make sure it looks how you want it to look, or to make sure all the info is correct and we're it should be.
N͟a͟t͟u͟r͟a͟l͟ d͟i͟s͟a͟s͟t͟e͟r͟s͟. Specifically, things such as hurricanes, earthquakes, and tsunamis.
Answer: Mail Merge
Explanation:
The feature of Microsoft Word that allows an individual to efficiently create documents that have the same general
content but may have different recipients or purpose is referred to as the Mail Merge
It should be noted that other options such as Send Merge, Print Merge and View Merge is wrong. Therefore, the correct option is A
// making class
class Player {
// Data members
string name;
int score;
// Name setter
void setName(string str){
this.name = str;
}
// Score setter
void setScore(int num){
this.score = num;
}
// Score getter
int getScore(){
return score;
}
// Name getter
string getName(){
return name;
}
};