public class Main {
public static void main(String[] args) {
System.out.println("Bio: " + getBio());
System.out.println("Current Workplace: " + getCurrentWorkplace());
System.out.println("Daily Knowledge: " + Arrays.toString(getDailyKnowledge()));
System.out.println("Future Goal: " + getFutureGoal());
}
public static String getBio() {
return "Bachelor in Information System, Full Stack Developer with knowledge about DevOps culture, " +
"API development and also functional and automated tests.";
}
public static String[] getDailyKnowledge() {
return new String[]{
"Java",
"Angular",
"Kubernetes",
"Javascript",
"MongoDB",
"NestJS",
"AWS",
"GitLab",
"React"
};
}
public static Workplace getCurrentWorkplace() {
return new Workplace("Betha Sistemas", "Full-Stack developer");
}
public static String getFutureGoal() {
return "To be a Java expert";
}
}
class Workplace {
private final String company;
private final String position;
public Workplace(String company, String position) {
this.company = company;
this.position = position;
}
public String toString() {
return company + " - " + position;
}
}
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.