Answer:
The Java class is given below with appropriate tags for better understanding
Explanation:
public class Cat extends Pet{
private String breed;
public Cat(String name, String owner, String breed){
/* implementation not shown */
super(name, owner);
this.breed = breed;
}
public String getBreed() {
return breed;
}
public void setBreed(String breed) {
this.breed = breed;
}
public String speak(){ /* implementation not shown */
return "Purring…";
}
}
The telecommunications device that is widely used in industries that require closed communication are walkie-talkies. Correct answer: D
Walkie-talkies are hand-held, portable, two-way radio transceivers which enable secure communication between the two points, without being part of a network.
Answer:
A. <em>Encoding Process </em>
Explanation:
Memory is an <em>encoding process </em>that includes the organization and shaping of information by processing, storage, and retrieval of information.
There are two types of memory in computing, <em>RAM </em>and <em>ROM</em>. <em>RAM </em>stands for <em>Random Access Memory</em>. It I the core memory of the computer and it is especially faster regarding reading and writing process. As an analogy, RAM memory is like the “<em>Short-term</em>” memory of the computer. <em>ROM </em>stands for <em>Read-Only Memory</em>, this is the type of memory in charge of permanently storing data in the computer. It contains the necessary information to run the computer. As an analogy, <em>ROM </em>memory is like the “<em>long-term</em>” memory of the computer.