Answer:
VoIP
Explanation:
Voice over Internet Protocol. You can share videos, data, voice and other applications.
hola no conozco el toldo, pero necesito puntos cerebrales tan lo siento
Explanation:
Answer:
Media convergence
Explanation:
Media convergence is the process by which previous technologies that were not related merge to becomes more closely integrated so as to share tasks and resources and also advance concurrently.
For instance, television programs, journals, radio programs, and movies, now are available on the web through smart watches, laptops and smartphones.
Microsoft certification is a series of programs that provide certification of competence in Microsoft products.
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