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 for Freshers

Updated 28 Nov 2021

Infosys Java Programmer Interview Experiences for Freshers

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

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Technical Questions
  • Q2. Why should we hire you?
  • Q3. How do you rate yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be confident while answering.

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. What are the different permutations of a string when considering cases where the 1st character is fixed, or both the 1st and 2nd characters are fixed, or the 1st, 2nd, and 3rd characters are fixed?
  • Ans. 

    Permutations of a string with fixed characters.

    • For 1st character fixed: Generate permutations for the remaining characters.

    • For 1st and 2nd characters fixed: Generate permutations for the remaining characters.

    • For 1st, 2nd, and 3rd characters fixed: Generate permutations for the remaining characters.

  • Answered by AI
  • Q2. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack Problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final element of the array will contain the maximum value that can be stolen within the we

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Department of Mechanical Eng, University Institute of Technology ,RGPV. Eligibility criteria7 CGPA and aboveTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - OOPS concepts, Operating system, DBMS, basic dsa, Machine LearningTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 internship
Tip 2 : Don't write anything vague or don't brag be honest with your resume 
Tip 3 : Go through OOPS concepts thoroughly

Application resume tips for other job seekers

Tip 1 : Mention your projects clearly they will definitely question about your projects
Tip 2 : Do mention about your coding/dsa achievements it makes a good impact on the interviewer

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic core java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was normal core java questions

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Practise aptitude in India bix

Round 2 - Coding Test 

Practise coding languages like C , Java or Python

Round 3 - HR 

(1 Question)

  • Q1. Why it and asked about hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend the interview with confidence and dedication

Interview Questionnaire 

1 Question

  • Q1. Basic questions from c program

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared,stay calm and answer bold

I applied via Company Website and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy questions, hardly took 40 minutes

Round 2 - Coding Test 

Moderate questions, interviewer was friendly

Interview Preparation Tips

Interview preparation tips for other job seekers - learn dsa and some unix commands you are good to go
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2022. There were 3 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 

30min test related to reasoning and maths

Round 3 - Coding Test 

2coding question based on scenario to solve u

Interview Preparation Tips

Interview preparation tips for other job seekers - You can join the tcs if you want job security but the salary is hike pretty less.

Interview Questionnaire 

1 Question

  • Q1. What are your skills?

Infosys Interview FAQs

How to prepare for Infosys Java Programmer interview for freshers?
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 for freshers?

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

  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.

Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k 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
15% 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.4k salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Senior Systems Engineer
51.2k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

System Engineer
31.7k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
31k salaries
unlock blur

₹5.1 L/yr - ₹19.6 L/yr

Senior Associate Consultant
28.8k salaries
unlock blur

₹6.2 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

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