Premium Employer

i

This company page is being actively managed by Infosys Team. If you also belong to the team, you can get access from here

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Java Programmer Interview Questions, Process, and Tips

Updated 28 Nov 2021

Infosys Java Programmer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What use of JVM in java?
  • Ans. 

    JVM is used to execute Java bytecode and provide platform independence.

    • JVM stands for Java Virtual Machine.

    • It interprets compiled Java code and executes it.

    • JVM provides platform independence by converting bytecode to machine-specific code.

    • JVM also manages memory allocation and garbage collection.

    • Examples of JVM-based languages include Kotlin and Scala.

  • Answered by AI
  • Q2. Expand of JRE?
  • Ans. 

    JRE stands for Java Runtime Environment.

    • JRE is a software package that provides the necessary runtime environment for Java applications to run.

    • It includes the Java Virtual Machine (JVM), class libraries, and other supporting files.

    • JRE is required to run Java applications on a computer.

    • Examples of Java applications that require JRE include Eclipse, NetBeans, and Minecraft.

  • Answered by AI
  • Q3. Who is java Father?
  • Ans. 

    James Gosling is considered the father of Java programming language.

    • James Gosling is a Canadian computer scientist who created the Java programming language.

    • He developed Java while working at Sun Microsystems in the mid-1990s.

    • Java was initially designed for interactive television, but it quickly gained popularity for its platform independence and object-oriented features.

    • Gosling's team also developed the original Java ...

  • Answered by AI
  • Q4. Java programming uses?
  • Ans. 

    Java programming uses object-oriented programming principles and a robust set of libraries and frameworks.

    • Java uses object-oriented programming principles such as encapsulation, inheritance, and polymorphism.

    • Java has a rich set of libraries and frameworks for various purposes like GUI development, networking, database connectivity, etc.

    • Java supports multithreading, exception handling, and dynamic memory allocation.

    • Java...

  • Answered by AI
  • Q5. What is Java Program?
  • Ans. 

    Java Program is a set of instructions written in the Java programming language that can be executed by a computer.

    • Java Program is a collection of classes and methods that define the behavior of a software application.

    • It is written in the Java programming language and can be executed on any platform that has a Java Virtual Machine (JVM).

    • Java Programs are compiled into bytecode, which is then interpreted and executed by ...

  • Answered by AI
  • Q6. What is object?
  • Ans. 

    An object is a fundamental concept in object-oriented programming, representing a real-world entity with its own state and behavior.

    • An object is an instance of a class.

    • It encapsulates data and methods.

    • Objects can interact with each other through method calls.

    • Example: A car object can have properties like color and speed, and methods like start() and stop().

  • Answered by AI
  • Q7. Object is a real time entity and combination of state and behavior.
  • Q8. What is Class?
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • A class is a template that defines the properties and behaviors of objects.

    • It encapsulates data and methods that operate on that data.

    • Objects are instances of a class.

    • Classes can inherit properties and behaviors from other classes through inheritance.

    • Example: class Car { String color; void start() { ... } }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My question is basic questions but it is very useful questions.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Arithmetic, reasoning, English

Interview Preparation Tips

Interview preparation tips for other job seekers - Fresher
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Technical reading Writing of programmes

Round 3 - Coding Test 

Writing the coding is technically, and correctly

Round 4 - Assignment 

Reading and Writing the programme individually

Round 5 - HR 

(5 Questions)

  • Q1. About my education and institute
  • Q2. About my resume and personal
  • Q3. About my any other qualification
  • Q4. About my experience, and knowledge
  • Q5. About suitable time for job

Interview Preparation Tips

Interview preparation tips for other job seekers - Rite personality, time management , detailed answers all about the questions.

I applied via Referral and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Python,java

Round 2 - Group Discussion 

Bluetoth

Interview Preparation Tips

Interview preparation tips for other job seekers - very useful secur by the job very super

I applied via Referral and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java basic interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Propare jave basic interview preparation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Transactions in springboot
  • Ans. 

    Transactions in Spring Boot manage database operations as a single unit of work to ensure data integrity.

    • Spring Boot provides support for declarative transaction management using @Transactional annotation.

    • Transactions can be configured at class or method level.

    • Transactions can be rolled back in case of exceptions to maintain data consistency.

    • Example: @Transactional annotation on a service method ensures that all databa...

  • Answered by AI
  • Q2. Difference between arraylist and linked list
  • Ans. 

    ArrayList is resizable array implementation, LinkedList is doubly linked list implementation.

    • ArrayList uses dynamic array to store elements, LinkedList uses doubly linked list.

    • ArrayList is faster for accessing elements by index, LinkedList is faster for adding/removing elements.

    • Example: ArrayList arrList = new ArrayList<>(); LinkedList linkedList = new LinkedList<>();

Answered by AI
  • Q3. How REST API used
  • Ans. 

    REST API is used to communicate between client and server using HTTP methods like GET, POST, PUT, DELETE.

    • REST API allows clients to access and manipulate resources on a server using standard HTTP methods.

    • It uses URLs to identify resources and HTTP methods to perform actions on those resources.

    • Common HTTP methods used in REST API are GET (retrieve data), POST (create data), PUT (update data), DELETE (remove data).

    • REST A...

  • Answered by AI
  • Q4. Annotations in springboot
  • Ans. 

    Annotations in Spring Boot are used to provide metadata about the application and its components.

    • Annotations are used to configure Spring Boot applications, define beans, handle requests, etc.

    • Examples include @SpringBootApplication, @RestController, @Autowired, @RequestMapping, etc.

  • Answered by AI
  • Q5. Features of java 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods in interfaces.

    • Lambda expressions allow for more concise code and enable functional programming.

    • Functional interfaces are interfaces with a single abstract method, used for lambda expressions.

    • Streams provide a way to work with collections of objects in a functional style.

    • Default methods in interfaces ...

  • Answered by AI
  • Q6. How interface is implemented in java
  • Ans. 

    Interfaces in Java are implemented using the 'implements' keyword, allowing classes to provide specific implementations for methods defined in the interface.

    • Interfaces in Java define a contract for classes to implement, specifying method signatures without implementations.

    • A class can implement multiple interfaces by separating them with commas.

    • Classes implementing an interface must provide concrete implementations for ...

  • Answered by AI
  • Q7. How stream API works
  • Ans. 

    Stream API in Java provides a way to process collections of objects in a functional style.

    • Stream API allows for functional-style operations on collections like map, filter, reduce, etc.

    • It supports lazy evaluation, meaning operations are only performed when needed.

    • Streams can be sequential or parallel, depending on the source and operations used.

  • Answered by AI
  • Q8. Benefits of springboot over spring
  • Ans. 

    Spring Boot simplifies the setup and development of Spring applications by providing a convention-over-configuration approach.

    • Spring Boot eliminates the need for XML configuration by using annotations and sensible defaults.

    • It includes embedded servers like Tomcat, Jetty, or Undertow, making it easy to deploy standalone applications.

    • Auto-configuration feature reduces the amount of boilerplate code needed to set up a Spr...

  • Answered by AI
  • Q9. Difference between throw and throwable
  • Ans. 

    throw is a keyword used to explicitly throw an exception, while Throwable is a class that serves as the base class for all exceptions in Java.

    • throw is used to throw an exception in a method, while Throwable is the superclass of all exceptions in Java.

    • throw is followed by an instance of Throwable class or its subclasses, while Throwable is a class that provides common methods for handling exceptions.

    • Example: throw new N...

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Try to speak about one topic of more time it will increase the time of interview.

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

    Round 1 - Group Discussion 

    They asked question about myself

    Round 2 - Coding Test 

    Gave codeing in advance java concepts

    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Good coding questions related array and string

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

    Round 1 - Coding Test 

    1. Basic Java
    2. Code Snippet
    3. Microservices

    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Company Website and was interviewed in Jun 2023. There were 5 interview rounds.

    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
    View all tips
    Round 2 - Aptitude Test 

    Logical aptitude.
    Spatial aptitude.
    Organisational aptitude.
    Physical aptitude.

    Round 3 - Case Study 

    Why they chose your company.
    How your product solved the problem clients faced.
    The measurable results of the service provided.

    Round 4 - HR 

    (5 Questions)

    • Q1. Self introduction for
    • Q2. Introduction your self
    • Q3. Why do you choose this company
    • Q4. I'm like all food my
    • Ans. Favourite food is biriyani it's my All time favourite
    • Answered Anonymously
    • Q5. That all when I'm thinking
    Round 5 - Group Discussion 

    Group discussion means one of the news project will be comes we're discussing about that project it's is group discussion

    Infosys Interview FAQs

    How to prepare for Infosys Java Programmer interview?
    Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Infosys. The most common topics and skills that interviewers at Infosys expect are Java, Spring Boot, Microservices, Hibernate and J2Ee.
    What are the top questions asked in Infosys Java Programmer interview?

    Some of the top questions asked at the Infosys Java Programmer interview -

    1. What use of JVM in ja...read more
    2. What is Java Progr...read more
    3. What is Cla...read more

    Tell us how to improve this page.

    Infosys Java Programmer Interview Process

    based on 1 interview

    Interview experience

    3
      
    Average
    View more
    Join Infosys Creating the next opportunity for people, businesses & communities

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Accenture Interview Questions
    3.8
     • 8.2k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.8
     • 5.6k Interviews
    Capgemini Interview Questions
    3.7
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    Genpact Interview Questions
    3.8
     • 3.1k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    IBM Interview Questions
    4.0
     • 2.4k Interviews
    View all
    Infosys Java Programmer Salary
    based on 10 salaries
    ₹3 L/yr - ₹10 L/yr
    16% more than the average Java Programmer Salary in India
    View more details

    Infosys Java Programmer Reviews and Ratings

    based on 2 reviews

    4.3/5

    Rating in categories

    4.0

    Skill development

    2.3

    Work-life balance

    3.0

    Salary

    3.6

    Job security

    3.6

    Company culture

    4.6

    Promotions

    3.7

    Work satisfaction

    Explore 2 Reviews and Ratings
    Technology Analyst
    55.9k salaries
    unlock blur

    ₹3 L/yr - ₹11 L/yr

    Senior Systems Engineer
    50.5k salaries
    unlock blur

    ₹2.8 L/yr - ₹8 L/yr

    System Engineer
    39.5k salaries
    unlock blur

    ₹2.5 L/yr - ₹5.5 L/yr

    Technical Lead
    30.7k salaries
    unlock blur

    ₹5.2 L/yr - ₹19.5 L/yr

    Senior Associate Consultant
    27.8k salaries
    unlock blur

    ₹6.2 L/yr - ₹16.8 L/yr

    Explore more salaries
    Compare Infosys with

    TCS

    3.7
    Compare

    Wipro

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Accenture

    3.8
    Compare
    Did you find this page helpful?
    Yes No
    write
    Share an Interview