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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Interview Questions and Answers

Updated 30 Jul 2025
Popular Designations

4.9k Interview questions

A System Engineer was asked 4d ago
Q. What is a class and a method?
Ans. 

A class is a blueprint for creating objects, while a method is a function defined within a class that operates on its data.

  • A class encapsulates data and behavior in object-oriented programming.

  • Example: class Car { } defines a Car class.

  • A method is a function that belongs to a class.

  • Example: class Car { void drive() { } } defines a drive method.

View all System Engineer interview questions
A System Engineer was asked 4d ago
Q. Write a for loop to print elements.
Ans. 

A for loop iterates through an array to print each element sequentially.

  • Use a for loop syntax: for (initialization; condition; increment) { }

  • Example: for (int i = 0; i < array.length; i++) { System.out.println(array[i]); }

  • In JavaScript: for (let i = 0; i < array.length; i++) { console.log(array[i]); }

  • In Python: for element in array: print(element)

View all System Engineer interview questions
A Technology Analyst was asked 5d ago
Q. Which design patterns have you utilized in your projects?
Ans. 

I've utilized various design patterns like Singleton, Observer, and Factory in my projects to enhance code maintainability and scalability.

  • Singleton: Ensured a single instance of a configuration manager in a web application.

  • Observer: Implemented in a notification system where multiple components react to user actions.

  • Factory: Used to create different types of user objects based on user roles in an authentication m...

View all Technology Analyst interview questions
A Senior Process Specialist was asked 5d ago
Q. Describe the AP process.
Ans. 

The Accounts Payable (AP) process manages company expenses and vendor payments efficiently.

  • Invoice Receipt: Collecting invoices from vendors for goods/services received.

  • Invoice Verification: Ensuring accuracy by matching invoices with purchase orders and receipts.

  • Approval Workflow: Routing invoices for approval from relevant departments or managers.

  • Payment Processing: Scheduling and executing payments to vendors v...

View all Senior Process Specialist interview questions
A Trainee was asked 1w ago
Q. What is an index in SQL?
Ans. 

An index in SQL is a database object that improves the speed of data retrieval operations on a table.

  • Indexes are created on columns to enhance query performance.

  • Example: CREATE INDEX idx_name ON employees(name);

  • They work like a book's index, allowing quick access to data.

  • Indexes can be unique, ensuring no duplicate values in a column.

  • Example: CREATE UNIQUE INDEX idx_email ON users(email);

  • While they speed up reads,...

View all Trainee interview questions
A Data Engineer was asked 1w ago
Q. What is the concept of Pardo in dataflow?
Ans. 

Pardo in dataflow refers to a parallel data processing model that optimizes performance and resource utilization.

  • Pardo stands for 'Parallel Do', enabling distributed processing of data across multiple nodes.

  • It allows for efficient handling of large datasets by breaking them into smaller chunks.

  • For example, in Apache Beam, Pardo can be used to apply a function to each element in a collection in parallel.

  • This model ...

View all Data Engineer interview questions

Infosys HR Interview Questions

808 questions and answers

Q. How have you addressed security concerns in your project?
Q. Explain your last project.
Q. What aspects of your resume would you like to highlight?
A Data Engineer was asked 1w ago
Q. What is the Python program to calculate the number of trailing zeros in a factorial?
Ans. 

Calculate trailing zeros in a factorial using Python by counting factors of 5 in the numbers leading to n.

  • Trailing zeros in n! are produced by factors of 10, which are made from pairs of 2 and 5.

  • Since there are usually more factors of 2 than 5, we only need to count the factors of 5.

  • The formula to calculate trailing zeros is: n // 5 + n // 25 + n // 125 + ... until n // 5^k is 0.

  • Example: For 100!, trailing zeros =...

View all Data Engineer interview questions
Are these interview questions helpful?
A Technical Lead was asked 1w ago
Q. How would you manage a memory leak in a production server?
Ans. 

Managing memory leaks involves detection, prevention, and remediation strategies to ensure application stability.

  • Use memory profiling tools like Valgrind or VisualVM to identify memory leaks.

  • Implement automated tests that include stress testing to catch leaks early.

  • Regularly review and refactor code to eliminate unnecessary object retention.

  • Utilize weak references in languages like Java to avoid strong reference c...

View all Technical Lead interview questions
A Data Entry Operator was asked 1w ago
Q. What does a data entry operator do?
Ans. 

A data entry operator inputs, updates, and maintains data in computer systems, ensuring accuracy and efficiency.

  • Inputting data from various sources, such as paper documents or online forms, into databases.

  • Verifying the accuracy of data by cross-referencing with original documents.

  • Updating existing data to reflect changes, such as customer information or inventory levels.

  • Maintaining data integrity by following comp...

View all Data Entry Operator interview questions
A Java Spring Boot Developer was asked 1w ago
Q. How can streams be used to find the person with the maximum age from an array of Person objects, given a Person class?
Ans. 

Use Java Streams to find the person with the maximum age from an array of Person objects efficiently.

  • 1. Define the Person class with an age attribute: `class Person { int age; }`.

  • 2. Create an array of Person objects: `Person[] people = {new Person(25), new Person(30), new Person(22)};`.

  • 3. Use Streams to find the maximum age: `Person oldest = Arrays.stream(people).max(Comparator.comparingInt(Person::getAge)).orElse...

View all Java Spring Boot Developer interview questions

Infosys Interview Experiences

8k interviews found

I appeared for an interview before May 2016.

Interview Questionnaire 

10 Questions

  • Q1. Why B-Tech and whats your stream?
  • Ans. 

    I chose B-Tech in Computer Science because of my passion for technology and problem-solving.

    • Chose B-Tech in Computer Science due to passion for technology

    • Interested in problem-solving and innovation

    • Enjoy coding and working with computers

  • Answered by AI
  • Q2. Whats your Favorite Subject?
  • Q3. What you know about Machine and its function?
  • Ans. 

    A machine is a device that performs a specific task using power and mechanisms.

    • Machines can be simple or complex, ranging from a simple lever to a complex computer.

    • Machines use energy to perform work, such as lifting, moving, or transforming materials.

    • Examples of machines include cars, airplanes, washing machines, and robots.

    • Machines can be classified into six types: lever, pulley, wheel and axle, inclined plane, wedge...

  • Answered by AI
  • Q4. Tell me about your self?
  • Q5. What are your expectation from Infosys ?
  • Ans. 

    I expect Infosys to provide a challenging work environment, opportunities for growth, and a supportive team.

    • Opportunities for professional growth and development

    • Challenging work assignments to enhance skills

    • Supportive team environment for collaboration and learning

    • Clear communication and feedback from management

    • Access to training and resources to stay updated with technology

  • Answered by AI
  • Q6. As your major is mechanical, explain how turbine works and its parts?
  • Ans. 

    A turbine is a mechanical device that converts the energy from a fluid flow into useful work.

    • Turbines are commonly used in power generation, aviation, and marine applications.

    • They consist of several key parts including the rotor, stator, blades, and shaft.

    • The rotor is the rotating part of the turbine, while the stator is the stationary part.

    • Blades are attached to the rotor and are designed to capture the energy of the ...

  • Answered by AI
  • Q7. Do you think your b-tech major and your current job profile matches each other ?
  • Ans. 

    Yes, my b-tech major in Computer Science aligns well with my job profile as a System Engineer.

    • My b-tech major in Computer Science provided me with a strong foundation in programming, networking, and system design, which are all essential skills for a System Engineer.

    • I have been able to apply the knowledge and skills gained during my b-tech studies to effectively troubleshoot and optimize systems in my current job.

    • The t...

  • Answered by AI
  • Q8. Do you mind working for long hours at different location?
  • Q9. What is the color of your t-shirt Button?
  • Ans. 

    The color of my t-shirt button is black.

    • The color is black

    • It is a small round button on the front of my t-shirt

  • Answered by AI
  • Q10. Can you tell me the difference between C and C++ ?

Interview Preparation Tips

Round: Test
Experience: It was an off campus placement, it was conducted by Infosys for job filling through internal references, after applying for the exam online and completing the documentation. The exam took place in kolkata.
The process was simple, the result was announced in their respective mails.
Tips: Go through Infosys last year question after finishing the basic apti, reasoning through RS Aggarwal.
Duration: 1 hour

Round: HR Interview
Experience: The process started a day after the result was announced, the location was same were we had our exam, The process started early morning 3 Hr from Infosys were present for recruitment, Each interview lasted for 30 min more or less.
The result was announced at late evening when we were done will all interviews.
Tips: Go through the B-tech subject not all but at least one, see the basic question asked to it student, stay focus and confident some question are asked just to make you feel uncomfortable as they too knows that you don't know the answer.
When you go through this hectic process and at the end hear your name.
Nothing matters as you have accomplished your target.

Skills: Computation Skills, Attitude, Personality, Communication And Confidence
College Name: Black Diamond College of Engineering and Technology

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(21 Questions)

  • Q1. Explain the Spring Security.
  • Q2. Expalin the flow of a Rest API call from frontend to backend and response from backend to frontend.
  • Q3. Explain JWT token.
  • Q4. Define Filters and Segmentation in Spring Security.
  • Q5. How one microservices authenticate another microservice with JWT?
  • Q6. What is a Functional Interface?
  • Q7. Give an example of a java interface which uses a functional interface.
  • Q8. Write a code to implement Runnable using lambda.
  • Q9. Which is springboot default server and How to use another server in springboot?
  • Ans. 

    Spring Boot's default server is Tomcat, but you can easily switch to others like Jetty or Undertow.

    • Spring Boot uses Tomcat as the default embedded server.

    • To use Jetty, add the dependency: 'spring-boot-starter-jetty' in your pom.xml.

    • For Undertow, include 'spring-boot-starter-undertow' in your dependencies.

    • You can exclude Tomcat by adding 'exclude = {Tomcat.class}' in your @SpringBootApplication annotation.

  • Answered by AI
  • Q10. What are profiles and how to use them?
  • Q11. How is bean Injection working?
  • Q12. How to inject a specific bean of the same object?
  • Q13. How to set up a discovery server for microservices?
  • Q14. What is the use of @Primary annotation?
  • Q15. Which method can be used to check if a service is up or not?
  • Q16. How would you externalize a microservice?
  • Q17. What is the default port of springboot and How to change?
  • Ans. 

    Spring Boot's default port is 8080, and it can be changed via application properties or command line arguments.

    • Default port: 8080.

    • Change via application.properties: server.port=9090.

    • Change via command line: java -jar app.jar --server.port=9090.

    • Change via YAML: server: port: 9090

  • Answered by AI
  • Q18. What is an optional class and its use?
  • Q19. Optional.Of() vs Optional.ofNullable()
  • Ans. 

    Optional.of() throws an exception for null, while Optional.ofNullable() allows null values, returning an empty Optional.

    • Optional.of(T value): Requires a non-null value; throws NullPointerException if value is null.

    • Example: Optional<String> opt = Optional.of('Hello'); // valid

    • Optional.ofNullable(T value): Accepts null values; returns Optional.empty() if value is null.

    • Example: Optional<String> opt = Optional....

  • Answered by AI
  • Q20. Write SQL query to find highest salary.
  • Q21. What is a Rest template?
Round 2 - Technical 

(7 Questions)

  • Q1. Tell me about your project and what is your day-to-day work?
  • Q2. If a bunch of freshers joined your projects, they are not very competent about the skills you required in your project then how do you handle this situation?
  • Q3. If you get negative feedback from your manager then how will you tackle this situation?
  • Ans. 

    Receiving negative feedback is an opportunity for growth; I approach it with an open mind and a willingness to improve.

    • Listen actively to the feedback without interrupting, showing respect for the manager's perspective.

    • Ask clarifying questions to fully understand the feedback and the areas needing improvement.

    • Reflect on the feedback and identify specific actions I can take to address the concerns raised.

    • Create a plan t...

  • Answered by AI
  • Q4. If you project is going to end and you found a bug in the application then what actions will you take?
  • Q5. What is your long term and short term goals?
  • Q6. Why are you leaving your current organization?
  • Q7. If you have been assigned to a project and you're not compatible with required skills then what will you do? Will you reject the project?
Round 3 - HR 

(1 Question)

  • Q1. Current and Expected Salary?

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn indepth of core java and springboot.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. What motivates you?
  • Ans. 

    I am motivated by the opportunity to make a positive impact, continuous learning, and fostering strong relationships in the workplace.

    • Making a positive impact: I thrive when I can help resolve employee issues, leading to a more harmonious workplace.

    • Continuous learning: I am driven by the chance to develop my skills, such as attending workshops on conflict resolution.

    • Building relationships: I find motivation in creating...

  • Answered by AI
  • Q3. Why should we hire you?
  • Q4. What are your salary expectations?
  • Q5. What are your strengths?
  • Ans. 

    I excel in communication, problem-solving, and empathy, which are crucial for fostering positive employee relations.

    • Strong communication skills: I effectively convey information and listen actively, ensuring clarity in employee interactions.

    • Problem-solving abilities: I approach conflicts with a solution-oriented mindset, having successfully mediated disputes in previous roles.

    • Empathy: I understand employee concerns and...

  • Answered by AI
  • Q6. What are your weakness?
  • Ans. 

    I tend to be overly critical of my work, which can slow down my productivity and affect my confidence in decision-making.

    • I often spend too much time perfecting details, like when I worked on a project report and missed the deadline due to revisions.

    • I sometimes struggle with delegation, as I prefer to take on tasks myself to ensure quality, which can lead to burnout.

    • In team settings, I can be hesitant to voice my ideas,...

  • Answered by AI
  • Q7. What are your ability?
  • Ans. 

    I possess strong communication, conflict resolution, and analytical skills to foster positive employee relations and enhance workplace culture.

    • Excellent communication skills: I can effectively convey information and listen actively to employee concerns.

    • Conflict resolution: I have successfully mediated disputes between employees, leading to amicable solutions and improved team dynamics.

    • Analytical skills: I analyze emplo...

  • Answered by AI
  • Q8. Do you have any questions for me ?
  • Q9. Tell me about a time you failed?
  • Q10. Describe a time you faced a challenge
  • Ans. 

    Faced a challenge when mediating a conflict between two team members, leading to improved communication and collaboration.

    • Identified the root cause of the conflict: differing work styles and communication issues.

    • Facilitated a meeting where both parties could express their concerns and perspectives.

    • Encouraged active listening and empathy, helping them understand each other's viewpoints.

    • Developed a follow-up plan to ensu...

  • Answered by AI
  • Q11. Give an example of a time you worked in a team
  • Ans. 

    Collaborated with a diverse team to enhance employee engagement through a comprehensive feedback initiative.

    • Led a team of five in designing an employee feedback survey to assess workplace satisfaction.

    • Facilitated brainstorming sessions to gather diverse perspectives and ideas.

    • Analyzed survey results and presented findings to management, leading to actionable changes.

    • Implemented follow-up meetings to ensure continuous i...

  • Answered by AI
  • Q12. Why do you want to work for our company
  • Ans. 

    I admire your company's commitment to employee well-being and innovative practices, making it an ideal place for my skills and passion.

    • Your company's strong focus on employee engagement aligns with my belief in fostering a positive workplace culture.

    • I am impressed by your initiatives in diversity and inclusion, which resonate with my values and experiences in promoting equity.

    • The opportunity to work with a team that pr...

  • Answered by AI
  • Q13. What are your hobbies and interests
  • Q14. How do you do handle conflict
  • Q15. Are you team player?
  • Ans. 

    Absolutely! I thrive in collaborative environments and believe teamwork drives success.

    • I actively listen to my teammates' ideas and incorporate their feedback into projects.

    • In my previous role, I led a cross-departmental team to improve employee engagement, resulting in a 20% increase in satisfaction scores.

    • I believe in celebrating team successes, which fosters a positive atmosphere and motivates everyone to contribute...

  • Answered by AI
  • Q16. How do you deal with criticism
  • Ans. 

    I embrace criticism as an opportunity for growth, using it to improve my skills and enhance team dynamics.

    • Listen actively to understand the feedback without becoming defensive.

    • Reflect on the criticism to identify areas for personal and professional growth.

    • Seek clarification if the feedback is unclear, ensuring I fully grasp the points being made.

    • Implement changes based on constructive criticism, demonstrating my commit...

  • Answered by AI
  • Q17. Why did you pursue this career?
  • Ans. 

    I pursued a career in Employee Relations to foster a positive workplace culture and support employee well-being and engagement.

    • Passion for people: I enjoy helping individuals navigate workplace challenges, ensuring they feel heard and valued.

    • Conflict resolution: I have successfully mediated disputes, such as resolving a team conflict that improved collaboration and productivity.

    • Promoting engagement: I initiated employe...

  • Answered by AI
  • Q18. Do you have any questions?
  • Q19. What is goul?
  • Ans. 

    Goul is a term often used to refer to a mythical creature or a type of monster in folklore.

    • Goul is derived from Arabic 'ghul', meaning a demon or evil spirit.

    • In folklore, ghouls are often depicted as grave robbers or flesh-eating creatures.

    • Ghouls appear in various cultures, often associated with the undead or supernatural.

    • In modern literature and media, ghouls are popular in horror genres, such as in video games like '...

  • Answered by AI
  • Q20. How do you define success?
  • Q21. How would your friends describe you?
  • Ans. 

    My friends would describe me as empathetic, reliable, and a great listener who always supports them in their endeavors.

    • Empathetic: I often put myself in others' shoes, understanding their feelings and perspectives. For instance, I helped a friend through a tough breakup by actively listening and providing support.

    • Reliable: My friends know they can count on me. When a friend needed help moving, I was there without hesit...

  • Answered by AI
  • Q22. How do you stay up to date on industry trends
  • Ans. 

    I stay updated on industry trends through continuous learning, networking, and leveraging various resources.

    • Subscribe to industry newsletters and journals, such as SHRM or HR Magazine, to receive the latest research and insights.

    • Attend webinars and conferences, like the HR Technology Conference, to learn from experts and network with peers.

    • Engage in professional associations, such as the Society for Human Resource Mana...

  • Answered by AI
  • Q23. How would you describe your communication style
  • Q24. How would you handle a difficult Client or customer
  • Ans. 

    I would approach difficult clients with empathy, active listening, and a solution-oriented mindset to resolve their concerns effectively.

    • Listen actively to understand the client's concerns without interrupting.

    • Empathize with their situation by acknowledging their feelings, e.g., 'I understand how frustrating this must be for you.'

    • Ask clarifying questions to gather more information and ensure I fully understand the issu...

  • Answered by AI
  • Q25. How do you manage multiple projects similating nursery
  • Ans. 

    I prioritize tasks, utilize project management tools, and maintain clear communication to effectively manage multiple projects.

    • Prioritization: I assess project deadlines and importance, focusing on high-impact tasks first. For example, if two projects have overlapping deadlines, I evaluate which one aligns more with organizational goals.

    • Project Management Tools: I use tools like Trello or Asana to track progress and de...

  • Answered by AI
  • Q26. Can you give an example of a time you worked in
  • Ans. 

    I successfully mediated a conflict between two departments, improving collaboration and enhancing employee morale.

    • Identified the root cause of the conflict through one-on-one meetings with team members.

    • Facilitated a joint meeting where both departments could express their concerns and expectations.

    • Implemented a follow-up plan to ensure ongoing communication and collaboration between the teams.

    • Measured success through e...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For job seekers Taki advise store protect prepared and present and tailor your resume and cover letter to each specify job network facility and the your focus on building strong online presentation in showing your skills and experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Annotation used for exception handling in springboot How to call variables from application.properties file
  • Ans. 

    Spring Boot uses @Value annotation for accessing properties from application.properties for exception handling.

    • @Value annotation is used to inject values from application.properties.

    • Example: @Value("${my.property}") private String myProperty;

    • You can use @ConfigurationProperties for binding properties to a class.

    • Example: @ConfigurationProperties(prefix = "app") public class AppProperties { private String name; }

  • Answered by AI
  • Q2. Just 15 min interview taken and only specific questions were asked. What annotation do you know related to repository What is means by paginated repository, jpa repository and crud repository
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. What has been your experience in each of the companies you have worked for?
  • Ans. 

    I have worked for three companies with varying sizes and industries, gaining experience in infrastructure management, project planning, and team leadership.

    • Managed infrastructure projects for a large tech company, overseeing network upgrades and server migrations

    • Led a team of IT professionals in a medium-sized financial institution, implementing disaster recovery plans and security protocols

    • Worked as a consultant for a...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. Could you briefly describe the companies you have worked for?
  • Ans. 

    I have worked for a variety of companies in the technology and infrastructure sector.

    • Worked for a multinational IT consulting firm

    • Managed infrastructure projects for a Fortune 500 company

    • Consulted for a government agency on infrastructure upgrades

  • Answered by AI
  • Q3. What technologies have you worked with, and what was your role in each?
  • Ans. 

    I have worked with various technologies such as cloud computing, virtualization, network management, and cybersecurity.

    • Cloud computing - Managed AWS infrastructure for scalability and cost-efficiency.

    • Virtualization - Implemented VMware solutions to optimize server resources.

    • Network management - Configured Cisco routers and switches for efficient data flow.

    • Cybersecurity - Conducted vulnerability assessments and implemen...

  • Answered by AI
  • Q4. What are some use case studies related to the technologies you have worked with?
  • Ans. 

    Implemented a cloud migration project for a large financial institution

    • Led a team to assess current infrastructure and develop a migration plan

    • Utilized AWS services to migrate applications and data to the cloud

    • Ensured minimal downtime and optimized performance post-migration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Inquire with HR about the variable pay and ask about the percentage of quarterly bonuses or compensation. It is unfair that if you leave the company, they will provide you with 0% variable pay, as other companies do not operate in this manner.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jan 2025, where I was asked the following questions.

  • Q1. Can you provide a self-introduction?
  • Q2. What are the basic concepts in Java programming?
  • Q3. What is the program to generate even numbers?
  • Q4. What are the different types of networks?
  • Q5. What is machine learning, and what are the tools used in artificial intelligence (AI)?
  • Q6. Can you provide details about the project mentioned in your resume?

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is essential in interviews, and it is important to be proficient in at least one programming language.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Your pipeline is taking 45 minutes to complete. How would you optimize its speed without sacrificing quality?
  • Q2. A developer reports that their pod isn't able to access an internal service via its ClusterIP. How would you debug this?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(11 Questions)

  • Q1. Introduce yourself
  • Q2. Defference between Implicit And Explicit enhancement
  • Q3. What defferet type of enhancement and explain each
  • Q4. How to debug backgroud job
  • Ans. 

    Debugging background jobs involves checking logs, monitoring job status, and using debugging tools.

    • Check the logs for any error messages or warnings

    • Monitor the job status to see if it is running or stuck

    • Use debugging tools like debugger or profiler to analyze the code execution

    • Check for any dependencies or external factors affecting the job

  • Answered by AI
  • Q5. How debug smartforms
  • Ans. 

    Debugging smartforms involves identifying and fixing errors in the form design or code.

    • Check for syntax errors in the smartform code

    • Verify data binding and field mappings

    • Use debugging tools like breakpoints and watchpoints

    • Test the smartform with sample data to identify issues

    • Consult documentation or seek help from experienced developers

  • Answered by AI
  • Q6. Which bapi you have used
  • Ans. 

    I have used the BAPI_MATERIAL_GET_DETAIL to retrieve material details in SAP system.

    • BAPI_MATERIAL_GET_DETAIL is used to fetch material master data in SAP

    • It can be used to retrieve information such as material description, unit of measure, and plant data

    • Example: BAPI_MATERIAL_GET_DETAIL('MaterialNumber')

  • Answered by AI
  • Q7. What is file handling
  • Ans. 

    File handling is the process of managing and manipulating files on a computer system.

    • File handling involves tasks such as creating, reading, writing, and deleting files.

    • It also includes operations like opening and closing files, as well as moving and copying files.

    • Examples of file handling functions include fopen(), fread(), fwrite(), and fclose() in programming languages like C or Python.

  • Answered by AI
  • Q8. Which FM is used to upload data
  • Ans. 

    The FM used to upload data is 'UPLOAD_DATA'

    • The FM 'UPLOAD_DATA' is commonly used in SAP systems to upload data from external sources

    • It is often used in data migration projects or when bulk data needs to be imported into the system

    • The 'UPLOAD_DATA' FM typically requires input parameters such as file path, data format, and target table

  • Answered by AI
  • Q9. TMG events senario question
  • Q10. How ro make table feild case sensitive
  • Ans. 

    To make a table field case sensitive, you can change the collation of the column to a case-sensitive collation.

    • Change the collation of the column to a case-sensitive collation like Latin1_General_CS or SQL_Latin1_General_CP1_CS_AS

    • For example, ALTER TABLE table_name ALTER COLUMN column_name COLLATE Latin1_General_CS_AS

  • Answered by AI
  • Q11. Why we need to use BSPI instead od Update qury
  • Ans. 

    BSPI is used instead of Update query for real-time data processing and to ensure data consistency.

    • BSPI (Business Service Provider Interface) is used for real-time data processing in SAP systems.

    • BSPI ensures data consistency by providing a standardized way to update data across different systems.

    • Update queries can be risky for real-time data processing as they may lead to data inconsistencies.

    • BSPI allows for better erro...

  • Answered by AI
Round 2 - Technical 

(12 Questions)

  • Q1. Introduce yourself
  • Q2. What is the defference between Explicit and implicit enhancement
  • Q3. Explain Customer Exit requirements on which u worked
  • Q4. Different type of FM
  • Ans. 

    FM stands for Facilities Management, which includes various types such as Hard FM and Soft FM.

    • Hard FM involves physical assets like buildings and equipment maintenance.

    • Soft FM focuses on non-physical assets like cleaning, security, and catering services.

    • Other types include Integrated FM, Total FM, and Strategic FM.

    • Examples: Hard FM - HVAC maintenance, Soft FM - janitorial services.

  • Answered by AI
  • Q5. How to create BAPI
  • Ans. 

    BAPIs are created using transaction code BAPI in SAP system.

    • BAPIs are created using transaction code BAPI in SAP system.

    • BAPIs are defined using Function Modules in SAP.

    • BAPIs are used to integrate SAP systems with external systems.

    • BAPIs can be created for both standard SAP functions and custom functions.

  • Answered by AI
  • Q6. Tcode for code optimization
  • Ans. 

    Tcode for code optimization is SE30 in SAP

    • SE30 is a transaction code in SAP used for performance trace and analysis

    • It helps in identifying performance bottlenecks in ABAP code

    • SE30 provides detailed analysis of runtime, database, and memory consumption

  • Answered by AI
  • Q7. How to optimize code
  • Ans. 

    Code optimization involves improving code efficiency and performance.

    • Identify and remove unnecessary code

    • Use efficient data structures and algorithms

    • Minimize the number of function calls

    • Optimize loops and conditional statements

    • Use caching and memoization techniques

    • Profile and analyze code for bottlenecks

  • Answered by AI
  • Q8. Tcode for ADOBE Form
  • Ans. 

    The Tcode for ADOBE Form is SFP.

    • Tcode SFP is used to create and maintain Adobe Forms in SAP systems.

    • Adobe Forms are used for designing and formatting business documents like invoices, purchase orders, etc.

  • Answered by AI
  • Q9. Have you worked on Module Pool
  • Ans. 

    Yes, I have worked on Module Pool in SAP ABAP development.

    • I have experience creating interactive screens using Module Pool programming in SAP ABAP.

    • I have worked on designing screens with input fields, buttons, and logic to process user input.

    • I have implemented navigation between screens and data validation in Module Pool.

    • I have integrated Module Pool programs with backend ABAP logic for data processing.

    • I have experienc...

  • Answered by AI
  • Q10. Tcodes related to IDOC
  • Q11. What is the use of Commite statement
  • Ans. 

    Commit statement is used to permanently save changes made in a transaction in a database.

    • Commits all changes made in a transaction to the database

    • Permanently saves the changes

    • Ends the transaction and makes the changes visible to other transactions

  • Answered by AI
  • Q12. On which repprys u have worked
Round 3 - HR 

(3 Questions)

  • Q1. Why there is gap of 1 year after completing your graduation to getting job
  • Ans. 

    To gain practical experience and skills through internships, certifications, and volunteer work before securing a full-time job.

    • Took time to gain practical experience through internships, certifications, and volunteer work

    • Focused on developing skills and knowledge in relevant areas

    • Used the gap year to explore different career options and industries

    • Took time to travel or pursue personal interests before committing to a ...

  • Answered by AI
  • Q2. Preferred location
  • Q3. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on basics. They ask only besics questions and whenever you answer give the example your requirements on which you worked, be confident.

Python Software Developer Interview Questions & Answers

user image Prerana Vijay Bendale

posted on 3 Mar 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is paython
  • Q2. What is oops concepts
Round 2 - Aptitude Test 

Aptitude test questions

Round 3 - Technical 

(2 Questions)

  • Q1. What is machine learning
  • Q2. Machine learning example
  • Ans. 

    An example of machine learning is training a model to predict customer churn in a telecom company.

    • Collect and preprocess data on customer behavior and churn

    • Split data into training and testing sets

    • Choose a machine learning algorithm (e.g. logistic regression)

    • Train the model on the training data

    • Evaluate the model's performance on the testing data

    • Use the model to predict customer churn in the future

  • Answered by AI
Round 4 - Aptitude Test 

Aptitude test questions

Round 5 - One-on-one 

(2 Questions)

  • Q1. What is artificial intelligence
  • Ans. 

    Artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems.

    • AI involves machines performing tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, and language translation.

    • Machine learning is a subset of AI that allows machines to learn from data and improve their performance over time.

    • Examples of AI include...

  • Answered by AI
  • Q2. Type of artificial intelligence
  • Ans. 

    There are three types of artificial intelligence: narrow AI, general AI, and superintelligent AI.

    • Narrow AI, also known as weak AI, is designed for a specific task or set of tasks, such as facial recognition or language translation.

    • General AI, also known as strong AI, is able to perform any intellectual task that a human can do.

    • Superintelligent AI is hypothetical and would surpass human intelligence in every way.

    • Example...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Some deep question on stream API of Java8
  • Q2. Two program questions -> Anagram String and find first non repeating character from a string
  • Ans. 

    An anagram is a word formed by rearranging the letters of another, while non-repeating characters are unique in a string.

    • Anagram Check: To determine if two strings are anagrams, sort both strings and compare them. Example: 'listen' and 'silent'.

    • Character Count: Use a hash map to count occurrences of each character in a string to find the first non-repeating character. Example: 'swiss' returns 'w'.

    • Case Sensitivity: Cons...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on Product development phases
  • Q2. Questions on Agile methodologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer and interview experience is Good, but very bad experience with HR rounds.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. What are your strengths
  • Ans. 

    I possess strong communication skills, adaptability, and a customer-centric approach, ensuring effective support and satisfaction.

    • Excellent communication skills: I can convey information clearly and effectively, which helps in resolving customer queries promptly.

    • Adaptability: I can quickly adjust to new tools and processes, ensuring I stay efficient in a dynamic work environment.

    • Customer-centric approach: I prioritize ...

  • Answered by AI
  • Q3. What are your weaknesses
  • Ans. 

    I tend to be overly critical of my work, which can slow me down, but I'm learning to balance quality with efficiency.

    • I often spend too much time perfecting details, like ensuring every email response is flawless, which can delay my response time.

    • I sometimes struggle with delegation, as I prefer to handle tasks myself to ensure they meet my standards, but I'm working on trusting my team more.

    • I can be hesitant to speak u...

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

    I possess strong communication skills, a customer-centric approach, and a proven ability to resolve issues efficiently.

    • Excellent communication skills: I can convey information clearly and effectively, ensuring customers understand solutions.

    • Customer-centric approach: I prioritize customer satisfaction, as demonstrated when I resolved a complex issue for a client, leading to positive feedback.

    • Problem-solving abilities: ...

  • Answered by AI
  • Q5. Here are some other ways to phrase the question, depending on the context:

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

What people are saying about Infosys

View All
a system engineer
1w
I've only ever heard two types of opinions on this, what about yours?
So I'm working at a company that has an app for 'applying' attendance in case of WFH. You get 'WFH balance' in days. For ex: let's say I have 3 days WFH balance, which means I get to do WFH for 3 days. It will NOT count if I'm actually working on my work laptop or not. It all depends on me applying for WFH through the app. They give out limited WFH balance so that employees are forced to come to the office for the remaining days, which is okay since they have switched to hybrid model. But, if I'm not able to go to office and I don't have any more WFH balance, I will not be able to apply attendance. Instead, the app will force me to put leaves for that day. AND here's the million dollar question: if I had to put leave for that day then technically I shouldn't be working, right? But guess what? I have to work even though it counts as a leave! Wouldn't it be better to pre-apply the leaves and not work at all? But that's just how it is! I want to know your opinion on this.
Got a question about Infosys?
Ask anonymously on communities.

Infosys Interview FAQs

How many rounds are there in Infosys interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, HR and Aptitude Test.
How to prepare for Infosys 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 SDLC, Java, Project Management, Agile and Performance Engineering.
What are the top questions asked in Infosys interview?

Some of the top questions asked at the Infosys interview -

  1. What is your strong point in terms of technical knowledge? Like JAVA, C, C++. ...read more
  2. 1. what is the difference between exception and error. How did u solve the erro...read more
  3. 1. Journal entry for Purchase with GST 2. Explain any one Ind AS 3. What is SAP...read more
What are the most common questions asked in Infosys HR round?

The most common HR questions asked in Infosys interview are -

  1. Tell me about yourse...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more
How long is the Infosys interview process?

The duration of Infosys interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 5.3k interview experiences

Difficulty level

Easy 28%
Moderate 67%
Hard 5%

Duration

Less than 2 weeks 58%
2-4 weeks 25%
4-6 weeks 8%
6-8 weeks 4%
More than 8 weeks 5%
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.2k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.2k Interviews
HCLTech Interview Questions
3.5
 • 4.2k Interviews
Genpact Interview Questions
3.7
 • 3.5k Interviews
LTIMindtree Interview Questions
3.7
 • 3.1k Interviews
IBM Interview Questions
3.9
 • 2.5k Interviews
View all

Infosys Reviews and Ratings

based on 43.7k reviews

3.6/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

2.7

Salary

4.0

Job security

3.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 43.7k Reviews and Ratings
Servicenow Developer

Hyderabad / Secunderabad,

Chennai

+1

3-6 Yrs

Not Disclosed

IOS Developer-Bangalore-3-5 Yrs Female-R

Hyderabad / Secunderabad,

Chennai

+1

3-6 Yrs

₹ 4.1-12 LPA

Dot Net Developer

Hyderabad / Secunderabad,

Chennai

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
54.8k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
54.2k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.3k salaries
unlock blur

₹9.6 L/yr - ₹16.5 L/yr

System Engineer
32.6k salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Associate Consultant
32k salaries
unlock blur

₹8.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview