VOOZH about

URL: https://www.javacodegeeks.com/author/yatin-batra/page/17

⇱ Yatin Batra, Author at Java Code Geeks - Page 17 of 73


  • Core Java👁 Image
    Yatin BatraNovember 17th, 2025
    0 187

    Handling Non-Serializable Parts in Java Serialization

    Serialization in Java allows you to convert an object into a byte stream so that it can be stored or…

    Read More »
  • Enterprise Java👁 Image
    Yatin BatraNovember 14th, 2025
    0 1,049

    Mocking AmazonSQS in Unit Tests

    Unit tests should be fast, isolated, and deterministic. When your Java application interacts with AWS SQS, you want to avoid…

    Read More »
  • Core Java👁 Image
    Yatin BatraNovember 13th, 2025
    0 1,249

    Fetching Host and Port in Java

    In many Java web applications, there is a need to extract the host name and port from an incoming HTTP…

    Read More »
  • Core Java👁 Image
    Yatin BatraNovember 12th, 2025
    0 257

    Pattern-Based File Content Modification in Java

    In many real-world scenarios, developers need to modify file content based on specific patterns. For instance, you might want to…

    Read More »
  • Core Java👁 Image
    Yatin BatraNovember 11th, 2025
    0 450

    Optimizing String Splitting Performance in Java

    String manipulation is one of the most common operations in Java, and splitting strings based on delimiters is a frequent…

    Read More »
  • Core Java👁 Image
    Yatin BatraNovember 10th, 2025
    0 224

    Runtime Method Overriding in an Instantiated Java Object

    Method overriding in Java allows a subclass to redefine a method inherited from its superclass. However, there are many real-world…

    Read More »
  • Core Java👁 Image
    Yatin BatraNovember 7th, 2025
    0 178

    Converting BCD to Decimal in Java

    Binary-Coded Decimal (BCD) is a system of representing decimal numbers where each digit (0–9) is encoded using four binary bits.…

    Read More »
  • Core Java👁 Image
    Yatin BatraNovember 7th, 2025
    0 1,153

    Understanding Java Object Arrays

    In Java, everything is derived from the base class Object. The Object[] array is one of the most flexible types…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Yatin BatraNovember 5th, 2025
    0 499

    Making Spring Integration Tests Run Faster

    Integration tests exercise the application with realistic wiring, bridging the gap between pure unit tests and full end-to-end tests. They…

    Read More »
  • First
  • ...
  • 10
  • «
  • 16
  • 17
  • 18
  • »
  • 20
  • 30
  • ...
  • Last
Back to top button
Close