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 Fullstack Java Application Developer Interview Questions and Answers

Updated 27 Apr 2023

Infosys Fullstack Java Application Developer Interview Experiences

1 interview found

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

I appeared for an interview in Mar 2023.

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 - Technical 

(1 Question)

  • Q1. How to add dependency
  • Ans. 

    To add a dependency, you need to specify it in the project's build file.

    • Open the build file (pom.xml for Maven or build.gradle for Gradle)

    • Add the dependency in the appropriate section

    • Save the file and run the build command to download and install the dependency

    • Example: com.example example-library 1.0.0

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. It asked mr about scenario based question

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, Exception Handling & other Core Java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Search & Contact recruiters who hire for ur domain on LinkedIn & share ur resume with them, search relevant jobs on LinkedIn & apply.

Go to companies' websites & create ur profile.

Update ur profile daily on naukri. 👍🏻

Interview Questionnaire 

1 Question

  • Q1. Who is the c language denoted
  • Ans. 

    C language is a general-purpose, procedural computer programming language.

    • Developed by Dennis Ritchie at Bell Labs in 1972

    • Used for system programming, embedded systems, and application software

    • Influenced many other programming languages such as C++, Java, and Python

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Just Basic OOP's question, What is Interface, why use them?
  • Q2. What is Abstract Class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and is used as a base class for other classes.

    • An abstract class can have abstract and non-abstract methods.

    • Abstract methods have no implementation and must be implemented by the derived class.

    • An abstract class can have constructors and fields.

    • An abstract class can be used to define a common interface for a group of related classes.

    • Example: Animal is an abstract clas...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A recruiter found me on Naukari Site the name of the person is Kartik (*****), and then, set up an initial L1 interview with the peers. The initial contact was a phone screen regarding the job location, title, salary, etc. in Banglore after that, he set up the meetings with peers for the interview.

The interview was too good, but one thing which I feel bad Interviewer asked me salary while this is the part of the HR department, so why Interviewer asked me salary during an interview, this is totally not good for any candidate because if the candidate expectation is greater than the interviewer salary then definitely he will not hire that candidate that means.  



After Interview:-

 Then, Kartik HR contact me again to tell that they are willing to offer less salary 14LPA than that was decided
- I said yes, and they asked me joining date
- I provided the next week date itself
- But I never heard back from them afterward.
- I tried to contact Kartik, but he is not willing to reply

Very unprofessional behavior and bad experience. I don't know were they just wasting my time.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Tell about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Proficient in Java, C++, and Python

    • Experience with web development using HTML, CSS, and JavaScript

    • Familiarity with agile development methodologies

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. What is array and how it is different from linked lists?
  • Ans. 

    Array is a collection of elements of same data type. Linked list is a data structure where each element points to the next one.

    • Arrays have fixed size, linked lists can grow dynamically

    • Accessing elements in an array is faster than in a linked list

    • Inserting or deleting elements in a linked list is faster than in an array

    • Arrays are stored in contiguous memory locations, linked lists are not

    • Arrays are used for random acces

  • Answered by AI
  • Q3. OSI model (Networking)?
  • Ans. 

    The OSI model is a conceptual model that describes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Application layer deals with u...

  • Answered by AI
  • Q4. Explain OSI model modules?
  • Ans. 

    The OSI model is a conceptual model that characterizes and standardizes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Applicati...

  • Answered by AI
  • Q5. About project? what technologies used? How you implemented?

Interview Preparation Tips

Interview preparation tips for other job seekers - My personal advice is to first be prepared on what u have written in Resume.
Get some current knowledge about the company like CEO name, latest tech. on which company working on .

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Experience

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

There were two questions one from arrays and other one from linked list.

  • Q1. 

    Longest Switching Subarray Problem Statement

    You are provided with an array 'ARR' consisting of 'N' positive integers. Your task is to determine the length of the longest contiguous subarray that is switc...

  • Ans. 

    Find the length of the longest contiguous subarray where elements at even indices are equal and elements at odd indices are equal.

    • Iterate through the array and keep track of the length of the current switching subarray.

    • Update the length when the switching condition is broken.

    • Return the maximum length found for each test case.

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Use Floyd's Cycle Detection Algorithm to determine if there is a cycle in the linked list.

    • Maintain two pointers, one moving at twice the speed of the other, if they meet at some point, there is a cycle.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 2 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

The interviewer was quite friendly. Asked general HR questions .

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteriaAbove 7 CGPA, No pending backlogsTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures And Algorithms, Operating System, Puzzles, Aptitude, System DesignTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice at-least 300-350 questions from different topics.
Tip 2 : Practice aptitude from different topics be it arithmetical ability, logical reasoning.

Application resume tips for other job seekers

Tip 1 : Resume should be one pager.
Tip 2 : The projects mentioned should be job specific.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

CodeVita: CodeVita is an online coding contest that is conducted by TCS every year across the whole world for coders to showcase their programming skills. There are three rounds in CodeVita:

Pre Qualifier: Conducted Online
Qualifier: Conducted Online
Grand Finale: Conducted in India (offline) in TCS centers
In the Pre Qualifier round, there are 6 questions, and if you are able to solve at least 1 question and clear it’s all the test cases, there is a chance that you will get an interview call from TCS. For the safe side try to solve 2 questions or more completely.

  • Q1. 

    Delete Alternate Nodes from a Singly Linked List

    Given a Singly Linked List of integers, remove all the alternate nodes from the list.

    Input:

    The first and the only line of input will contain the elemen...
  • Ans. 

    Remove alternate nodes from a singly linked list of integers.

    • Traverse the linked list and skip every alternate node while connecting the previous node to the next node.

    • Update the next pointers accordingly to remove the alternate nodes.

    • Ensure to handle edge cases like empty list or list with only one node.

  • Answered by AI
  • Q2. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    Given an array of integers and a target, find all pairs of elements that add up to the target.

    • Iterate through the array and for each element, check if the target minus the element exists in a hash set.

    • If it exists, add the pair to the result. If not, add the element to the hash set.

    • Handle cases where the same element is used twice in a pair.

    • Return (-1, -1) if no pair is found.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

We were informed by the TCS a day before the interview about the time of our interview and all. As this year the whole process was online so a bunch of instructions was mentioned by TCS like the internet connectivity, important documents to present, and all. I joined the virtual lobby on time and my slot was from 3:30 PM to 6:30 PM, there were a few more candidates in the virtual lobby, and a lady started to speak. I was the first to give the interview and all other candidates were given different slots by that lady for their interviews.

  • Q1. Can you tell me something about yourself and describe the approaches you used to solve the problems in the contest?
Round 3 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This interview directly started with questions.

 

  • Q1. How has the COVID-19 pandemic affected the IT industry?
  • Ans. 

    The COVID-19 pandemic has significantly impacted the IT industry, leading to remote work, increased demand for digital solutions, and delays in projects.

    • Transition to remote work for many IT companies

    • Increased demand for digital solutions such as online collaboration tools, e-commerce platforms, and telehealth services

    • Delays in projects due to disruptions in supply chains and workforce availability

    • Shift towards cloud c...

  • Answered by AI
  • Q2. What is the contribution of the TATA group towards the betterment of our nation?
  • Ans. 

    TATA group has made significant contributions to the nation through various industries and philanthropic initiatives.

    • TATA Steel is one of the largest steel producers in India, contributing to infrastructure development.

    • TATA Motors is a leading automobile manufacturer, driving innovation in the automotive sector.

    • TATA Consultancy Services (TCS) is a global IT services company, creating job opportunities and boosting the ...

  • Answered by AI
Round 4 - HR 

Round duration - 90 minutes
Round difficulty - Easy

First, she introduced herself and then asked me to give my introduction. Then she asked behavorial and general questions.
 

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaCodeVitaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - C++, Data Structure, Operating System, SQL, Algorithms, System DesignTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1: Practice at least 300 coding questions.
Tip 2: Be confident.
Tip 3: Don't tell lies in interviews.

Application resume tips for other job seekers

Tip 1: Mention some good projects.
Tip 2: Don't put any false things.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself?
  • Q2. What are your Strengths?
  • Q3. What are your Weakness?
  • Q4. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your Homework?
Practice
Provide evidence &Data

I applied via Campus Placement and was interviewed before Mar 2021. 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 - HR 

(16 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and open to negotiation.

    • I am looking for a competitive salary that reflects my skills and experience.

    • I am more interested in the overall compensation package, including benefits and growth opportunities.

    • I would like to learn more about the company's salary range for this position.

    • I am confident that we c

  • Answered by AI
  • Q2. What is your family background?
  • Ans. 

    My family background is diverse and multicultural.

    • My parents are from different countries, which has exposed me to different cultures and perspectives.

    • I have relatives who work in various industries, including technology and healthcare.

    • Growing up, my family encouraged me to pursue my interests in computer science and supported my education in the field.

  • Answered by AI
  • Q3. Share details of your previous job.
  • Ans. 

    I worked as a Software Developer at XYZ Company.

    • Developed and maintained software applications using Java and Python.

    • Collaborated with a team of developers to design and implement new features.

    • Participated in code reviews and debugging sessions to ensure high-quality code.

    • Worked closely with clients to gather requirements and provide technical support.

    • Implemented unit tests and performed software testing to identify an...

  • Answered by AI
  • Q4. Why should we hire you?
  • Ans. 

    I have a strong background in software development and a proven track record of delivering high-quality projects on time and within budget.

    • I have a deep understanding of various programming languages and frameworks, allowing me to adapt quickly to new technologies.

    • I am highly skilled in problem-solving and troubleshooting, which enables me to identify and resolve issues efficiently.

    • I am a team player and have excellent...

  • Answered by AI
  • Q5. Why are you looking for a change?
  • Ans. 

    Looking for new challenges and growth opportunities.

    • Seeking a more challenging role to enhance my skills and knowledge.

    • Interested in working on cutting-edge technologies and projects.

    • Want to be part of a dynamic and innovative team.

    • Desire to expand my professional network and learn from industry experts.

  • Answered by AI
  • Q6. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and staying updated with new technologies

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q7. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving, attention to detail, teamwork

    • Weaknesses: time management, public speaking

  • Answered by AI
  • Q8. Tell me about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Experienced in Java, C++, and Python

    • Developed a mobile app using React Native

    • Worked on a team to create a web application using Angular

    • Strong problem-solving and analytical skills

  • Answered by AI
  • Q9. Tell me about yourself
  • Ans. 

    I am a software developer with experience in web development and a passion for problem-solving.

    • Experienced in web development using HTML, CSS, and JavaScript

    • Proficient in programming languages such as Java and Python

    • Familiar with frameworks like React and Angular

    • Strong problem-solving and analytical skills

    • Excellent teamwork and communication abilities

  • Answered by AI
  • Q10. What are your strength and weakness
  • Ans. 

    My strength is problem-solving and my weakness is sometimes overthinking.

    • Strength: Problem-solving

    • Weakness: Overthinking

  • Answered by AI
  • Q11. Where do you see yourself in 5 year's
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and improving my skills

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q12. Why are you looking for a change
  • Ans. 

    Seeking new opportunities for professional growth and challenges.

    • Looking for a more challenging role

    • Want to expand my skill set

    • Seeking better career prospects

    • Interested in working with new technologies

    • Want to work in a more collaborative environment

  • Answered by AI
  • Q13. I think I am very flexible and adaptive to learning new things
  • Q14. Share your details for your previous job
  • Ans. 

    I worked as a Software Developer at XYZ Company.

    • Developed and maintained web applications using Java and Spring framework

    • Collaborated with cross-functional teams to gather requirements and design solutions

    • Implemented unit tests and performed code reviews to ensure code quality

    • Participated in Agile development process and attended daily stand-up meetings

    • Troubleshooted and resolved software defects reported by users

  • Answered by AI
  • Q15. What is your family background
  • Ans. 

    My family background is diverse and multicultural, with members from different professions and cultural backgrounds.

    • My father is a doctor and my mother is a teacher.

    • I have two siblings, one is an engineer and the other is a lawyer.

    • We celebrate various cultural festivals and traditions together.

    • My family values education and encourages continuous learning.

  • Answered by AI
  • Q16. What are your salary expectations
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and open to negotiation.

    • I am looking for a fair and competitive salary based on my skills and experience.

    • I am more interested in the overall compensation package, including benefits and growth opportunities.

    • I am confident that we can come to a mutually beneficial agreement.

  • Answered by AI
Round 3 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Good morning sir/ mam..
I'm from Vinukonda
I'm ready to the interview

Infosys Interview FAQs

How many rounds are there in Infosys Fullstack Java Application Developer interview?
Infosys interview process usually has 3 rounds. The most common rounds in the Infosys interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in Infosys Fullstack Java Application Developer interview?

Some of the top questions asked at the Infosys Fullstack Java Application Developer interview -

  1. how to add depende...read more
  2. it asked mr about scenario based quest...read more

Tell us how to improve this page.

Infosys Fullstack Java Application Developer 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.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
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Infosys Fullstack Java Application Developer Salary
based on 4 salaries
₹4.1 L/yr - ₹5.5 L/yr
44% less than the average Fullstack Java Application Developer Salary in India
View more details
Technology Analyst
55.4k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
51.1k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

System Engineer
31.6k salaries
unlock blur

₹2.5 L/yr - ₹5.6 L/yr

Technical Lead
31k salaries
unlock blur

₹5 L/yr - ₹19.9 L/yr

Senior Associate Consultant
28.7k salaries
unlock blur

₹6.2 L/yr - ₹17 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