Javier Alvarez
Java is an object-oriented programming language
You should use java because...
Simple
Solid
Portable
Reusable code
Classes
Objects
Methods
Java classes are templates for creating objects.
Entity existing in the memory of the computer that has specific available properties and operations (methods).
The methods are the actions performed by an object by means of an invocation
class Persona{ String nombre,apellido; int edad; public Persona(String nombre, String apellido, int edad) { this.nombre = nombre; this.apellido = apellido; this.edad = edad; } public String getApellido() { return apellido; } public void setApellido(String apellido) { this.apellido = apellido; }