bhavesh070.hashnode.devUsing Generics to Swap and Sort Arrays of Different Types in JavaSometimes, when coding in Java, you want to write reusable methods that work with different data types — like sorting arrays of integers or strings — without rewriting your code for each type. In this post, I’ll share how I created a generic swap met...Jun 2, 2025·2 min read
bhavesh070.hashnode.devUnderstanding .yamlWhat is YAML? YAML stands for "YAML Ain't Markup Language", emphasizing that it is not meant for document markup but for configuration. It is a human-readable data serialization standard that uses indentation for structure, making it simple and int...Nov 19, 2024·2 min read
bhavesh070.hashnode.devAbstract Class vs Inheritance: Understanding the DifferenceObject-oriented programming (OOP) introduces various concepts that help developers design flexible and reusable code. Two such concepts, abstract classes and inheritance, are often misunderstood or confused. In this post, we’ll break down these terms...Sep 7, 2024·1 min read