Author Archives: Dhananjay Kumar

Performance tuning in Java 

Performance tuning is an essential aspect of software development, especially in enterprise-level applications where performance plays a significant role in user satisfaction and system stability. Java, being a popular programming language for enterprise-level applications, provides many tools and techniques for performance tuning. In this blog, we will discuss performance tuning in Java and the best Continue Reading »

Access Modifiers in Java

Introduction: In Java, we have to deal with classes, methods, variables, etc. Let’s suppose we have a class and we need to use variables or methods in different classes/packages. OR we want to specify that a variable or method will be accessed within a defined area. To manage the accessibility of any variables, methods, or Continue Reading »