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
3.7

based on 36.9k Reviews

Filter interviews by

Infosys Senior Application Developer Interview Questions and Answers

Updated 20 Mar 2024

Infosys Senior Application Developer Interview Experiences

1 interview found

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 Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

WAP to count each word in a sentence and dispaly the output.
Questions on marker inetrface and functional interface.
sprinboot annotation questions

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question
  • Q2. Leetcode medium array

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic correct as lot of data structure questions come along the way
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 Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Bascis of Angular - Routing, version upgrade, DI ,AOT JIT , FORMS , Services , Observable, Promise , lifecyclle

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do basics of Angular , JS, html , css
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is Oracle apps
  • Ans. 

    Oracle Applications are a suite of business applications software that help organizations manage their business processes.

    • Oracle Applications include modules for customer relationship management (CRM), enterprise resource planning (ERP), supply chain management (SCM), and more.

    • They are designed to automate and streamline business processes, improve efficiency, and provide real-time insights.

    • Examples of Oracle Applicati...

  • Answered by AI
  • Q2. Explain value sets
  • Ans. 

    Value sets are a collection of related values that can be used to define a set of acceptable values for a field or parameter.

    • Value sets help ensure data consistency and accuracy by restricting the possible values that can be entered.

    • They can be used in database fields, dropdown lists, or parameters in programming languages.

    • For example, a value set for a 'gender' field may include values like 'Male', 'Female', and 'Othe

  • Answered by AI
  • Q3. Explain index in plsql
  • Ans. 

    An index in PL/SQL is a database object that improves performance by allowing faster retrieval of data from tables.

    • Indexes are created on columns in a table to speed up the retrieval of rows based on the values in those columns.

    • They work similar to an index in a book, allowing the database to quickly locate the rows that match a certain criteria.

    • Indexes can significantly reduce the time it takes to retrieve data, espec...

  • Answered by AI
  • Q4. Explain joins in plsql
  • Ans. 

    Different types of joins in PL/SQL include inner join, outer join (left, right, full), cross join, and self join.

    • Inner join: Returns rows when there is at least one match in both tables.

    • Outer join: Returns all rows from one table and only matching rows from the other table (left, right, full).

    • Cross join: Returns the Cartesian product of the two tables.

    • Self join: Joins a table to itself.

  • Answered by AI
  • Q5. Explain functions in plsql
  • Ans. 

    Functions in PL/SQL are named blocks of code that can accept parameters, perform a task, and return a value.

    • Functions are created using the CREATE FUNCTION statement.

    • Functions can accept input parameters and return a single value.

    • Functions can be called from SQL statements or other PL/SQL blocks.

    • Functions can be used to encapsulate reusable logic and improve code readability.

    • Example: CREATE FUNCTION calculate_area(leng...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 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 - Technical 

(2 Questions)

  • Q1. What are the types of exceptions ?
  • Ans. 

    There are two types of exceptions: checked and unchecked.

    • Checked exceptions are checked at compile-time and must be handled by the programmer.

    • Unchecked exceptions are not checked at compile-time and can be handled by the JVM.

    • Examples of checked exceptions include IOException and SQLException.

    • Examples of unchecked exceptions include NullPointerException and ArrayIndexOutOfBoundsException.

  • Answered by AI
  • Q2. How will you handle exceptions of a procedure getting called in another procedure.
  • Ans. 

    I will use try-catch blocks to handle exceptions and log the error message for debugging purposes.

    • Enclose the procedure call in a try block.

    • Catch the exception in the catch block.

    • Log the error message for debugging purposes.

    • Handle the exception appropriately based on the specific scenario.

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?

Interview Preparation Tips

Topics to prepare for DXC Technology Senior Application Developer interview:
  • PLSQL
  • Shell Scripting
Interview preparation tips for other job seekers - It was the coolest interview I've ever faced. As my interview for application developer in pl/SQL and shell scripting it went very well with the questions like 7,8 questions on pl/SQL and equally on shell scripts.

Skills evaluated in this interview

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

Hacker rank test was given, we need to clear that first.

Round 2 - Technical 

(2 Questions)

  • Q1. Java8 features, collections, Security management in application
  • Q2. Microservices, Spring boot concepts
Round 3 - Behavioral 

(1 Question)

  • Q1. Current project discussion and joining date confirmation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Swap the value of two variables without using the third variable
  • Ans. 

    To swap the value of two variables without using a third variable, use arithmetic operations.

    • Use addition and subtraction to swap values

    • Example: a = 5, b = 10. a = a + b (a = 15), b = a - b (b = 5), a = a - b (a = 10)

  • Answered by AI
  • Q2. Basic javascript - Promises, Callbacks, difference in event handling in javascript & react.js
  • Ans. Synthetic events are present in React, syntax differences
  • Answered Anonymously
  • Q3. What is Context API
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is particularly useful for passing down global data like themes, user authentication, or language preferences.

    • Context API consists of three main ...

  • Answered by AI
  • Q4. How do you orient some components in react with 40 or more pages? whats your approach?
  • Ans. 

    Use a routing library like React Router to manage navigation and organize components into separate pages.

    • Utilize React Router to set up routes for each page and handle navigation

    • Organize components into separate folders based on their functionality or page they belong to

    • Consider lazy loading components to improve performance, especially with a large number of pages

  • Answered by AI
  • Q5. How would you optimize an application?
  • Ans. 

    Optimizing an application involves identifying and resolving performance bottlenecks to improve efficiency and user experience.

    • Identify and address slow database queries or inefficient code

    • Implement caching mechanisms to reduce load times

    • Optimize images and assets to reduce file sizes

    • Utilize asynchronous processing to improve responsiveness

    • Profile and analyze code to identify areas for improvement

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, prepare well, strengthen your base knowledge related to that Technologies for which you're applying for the jobs.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Simple Hackerround test involving 50 MCQ's.

Round 2 - Technical 

(2 Questions)

  • Q1. Focused on JAVA and spring boot framework questions. was asked one 1 DS problem on stack.
  • Q2. Check balance paranthesis
Round 3 - Technical 

(1 Question)

  • Q1. This round was focused on project discussion , where initially I was asked lot of questions on my tech stack and how do you work and deliver a software release to production. Then the manager took over an...

Interview Preparation Tips

Topics to prepare for IBM Senior Application Developer interview:
  • Java
  • Spring Boot
  • DSA
Interview preparation tips for other job seekers - Focus on your skills and you should be able to crack IBM easily. btw this interview experience is for 4-6 years of people.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

I was asked about ReactJS and Node JS questions and 3 coding questions

Interview Preparation Tips

Topics to prepare for Accenture Senior Application Developer interview:
  • MERN STACK
Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic dax and questions on visualisations in power BI
  • Q2. Basic SQL questions on joins and window functions.

Infosys Interview FAQs

How many rounds are there in Infosys Senior Application Developer interview?
Infosys interview process usually has 1 rounds. The most common rounds in the Infosys interview process are Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Infosys interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Infosys Senior Application Developer Salary
based on 10 salaries
₹5.2 L/yr - ₹13.5 L/yr
52% less than the average Senior Application Developer Salary in India
View more details
Technology Analyst
56.3k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.5k salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

System Engineer
38.9k 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.1k 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.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview