import java.util.List;
class Sanjeet extends Developer{
String name = Sanjeet Raj;
List<String> education = List.of(
"Bachelor's in Computer Science and Engineering , NIT Patna "
);
List<String> interest = List.of(
"Backend",
"Machine Learning",
"System Design"
"Shell Scripting"
);
List<String> hobies= List.of(
"Sudoku",
"Gaming",
"Badminton"
)
@Override
public void code(){
System.out.println("Runs on my machine 🤷♂️");
}
}
I don’t always test my code… but when I do, it’s in production.
>



