Answer:
public class Class {
private String name ="";
private int score = 0;
//Method SetName
public void setName(String newName){
name = newName;
}
//Method SetScore
public void setScore(int newScore){
score = newScore;
}
//Method GetName
public String getName() {
return name;
}
//Method GetScore
public int getScore() {
return score;
}
}
Explanation:
- The class called Class is implemented in Java programming language
- It has two fields (instance variables name and score)
- Methods for setting the values of variables (mutator methods) or setters
- Methods for getting the values of the variables (accessor methods) getters
Answer Research is defined as the creation of new knowledge and/or the use of existing knowledge in a new and creative way so as to generate new concepts, methodologies and understandings
Answer:

•Hardware
•Software
•Data
•Procedures
•Input Unit
•Output Unit
•CPU(Central Processing Unit)
•Connectivity
•Primary Memory
•Motherboard
•GPU(Graphics Processing Unit)
•Solid State Drive (SSD) or Hard Disk Drive (HDD)
•RAM
Explanation:
