Jugendra Bhati

Hello,

This is Jugendra Bhati, I'm a Software Developer.

                public class Coder {
                    private String name = "Jugendra Bhati";
                    private String[] skills = {"JAVA", "Kotlin", "MySQL", "MongoDB", "Firebase"};
                    private boolean hardWorker = true;
                    private boolean quickLearner = true;
                    private boolean problemSolver = true;

                    public boolean isHireable() {
                        return hardWorker && problemSolver && skills.length >= 5;
                    }
                }