class User {
private String name;
private int age;
private String address;
public User() {
this.name = "Bapparaj sk";
this.age = 21;
this.address = "India, West Bengal, Kolkata";
}
}
class Experience {
private String skills;
private String achievements;
private String projects;
public Experience() {
this.skills = "Java, JavaScript, TypeScript, Node.js, React.js, Next.js, Express.js, "
+ "MongoDB, Tailwind CSS, AWS, Firebase, Google Cloud, BullMQ, Redis";
this.achievements = "Solved 1000+ problems on LeetCode, "
+ "Strong problem solving and competitive programming skills, "
+ "Experience in building scalable web applications";
this.projects = "1. Social Media Web App (MERN Stack)\n"
+ "2. Personal 3D Animated Portfolio\n"
+ "3. News Web App (React + API)\n"
+ "4. College Student Management App (React Native)\n"
+ "5. Custom Chatbot System\n"
+ "6. Multiple Next.js and Express based applications";
}
}
class Education {
private String degree;
private String institution;
private String graduationYear;
public Education() {
this.degree = "Computer Science and Engineering";
this.institution = "Elitte Institute of Engineering & Management";
this.graduationYear = "2028";
}
}
class Contact {
private String email;
private String phone;
private String linkedIn;
public Contact() {
this.email = "bapparajsk97@gmail.com";
this.phone = "+91 9832616514";
this.linkedIn = "https://www.linkedin.com/in/bappa-raj-sk-6a0153233/";
}
}⭐ This README represents my profile in a fun Java-style format!


