-->
Skip to main content

Posts

Kent CamEye Interview Questions in Java

Kent CamEye Interview Questions in Java Today we will discuss Kent CamEye Interview Questions in Java for experienced developers having 3+ Years of Experience. In the earlier post, we had discussed  IRIS Software Interview Questions in Java . Let's see the Kent CamEye Interview Questions now... These questions are solely on the basis of the telephonic interview given by people and collected thereafter. So let's get started... Kent CamEye Interview Questions Telephonic Rounds       Spring Boot Interview Questions What advantages does it provide? what @SpringbootApplication annotation does?          Spring Interview Questions What is Spring bean and explain different bean scopes? If we create two different beans of type Singleton of the same class how spring will behave?     Core Java Interview Questions What is Try with resources in java? Do we need to provide catch and finally with a try with resources? What is the difference b...

Iris Software Interview Questions in Java

Iris Software Interview Questions in Java Today we will discuss Iris Software Interview Questions in Java for experienced developers having 3+ Years of Experience. These questions are solely on the basis of the telephonic interview given by people and collected thereafter. So let's get started... Iris Software Interview Questions Telephonic Rounds       Spring Boot Interview Questions What are the advantages of Spring Boot over Spring? Which different Configuration files are used to define properties? Explain Spring boot Architecture and how it is different than the MVC application? What advantages does Spring boot provide over Spring MVC? How to create an API in Spring Boot Application?      System Design  How you will design APIs for Product flow in e-commerce sites? Hint: For Create Order, Update Order, Edit Order, Delete Order Which Type of APIs you will create Synchronous or Asynchronous and why? Can we do update the Call using GET Method if...

Understanding public static void main in java

Understanding public static void main in java public static void main in java public static void main in java Let's split public static void main in java and understand it one by one. What is public static void main in java public :  public is an access modifier, which specifies from where and who can access this method. public makes the method available globally. public keyword is used before the main method to specify the starting execution point of the program and will be visible to JVM. Example : What will happen if we change public to private or protected or default with no access modifier below is the code snippet for all the three and its output public class JavaCodeGeekMainExample { private static void main(String[] args) { System.out.println("Hello World"); } } public class JavaCodeGeekMainExample { protected static void main(String[] args) { System.out.println("Hello World"); } } public class JavaCodeGeekMainExample { static ...