It's geared towards system administration but would also be useful for devops.
The RAM modules were not well placed or fitted firmly in the motherboard DIMM slots of the PC during toubleshooting.
What are RAM Modules?
RAM Modules have narrowly printed circuit boards that hold RAM chips (memory chips).
In order to function properly, RAM is expected to be placed or fitted firmly in the motherboard DIMM slots.
DIMM (Dual In-line Memory Module) is a module that contains one or several random access memory (RAM) chips on a small circuit board with pins that connect it to the computer motherboard.
Learn more on RAM Module here:
brainly.com/question/13308897?referrer=searchResults
#SPJ4
The answer would be D teach a new language.
// 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;
}
};