Answer:
mutator, accessor
Explanation:
Set methods are commonly called mutator methods, and get methods are commonly called accessor methods.
This is because set methods are used to mutate the state of a variable. Get methods, on the other hand are used to access the current state of the variable.
For example:
class Demo{
//Member variable
private int var;
//Accessor method
public int getVar(){
return var;
}
//Mutator method
public void setVar(int value){
var=value;
}
}
Answer:
Include the answers on an additional sheet.
Answer:
Internet
Explanation:
Internet is very often called the network of networks, creating a bridge between many networks and joining larger networks to another.
Answer:
A class is an good representation of the abstract data type as it is represented independently. For implementing a class, it is use to specify the interface for an abstract class.
Class is one of the type of abstract data type for the objects that whose behavior is basically define by the set of operations and values. It is known as abstract as, it provide an implementation independently.
When the class is using in an abstract data type, then it refers as hidden representation of the data. In this modern era, class is use for the implementation of the abstract data type.