Upload Button Icon Add office photos

Filter interviews by

Westpac Senior Software Engineer Interview Questions and Answers

Updated 7 May 2023

Westpac Senior Software Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Array of integers nums and an integer target, return indices of 2 numbers that they add up to target
  • Ans. 

    Return indices of 2 numbers in an array that add up to a target integer.

    • Use a hash table to store the complement of each number in the array.

    • Iterate through the array and check if the complement exists in the hash table.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI
  • Q2. Given a string, return the longest palindromic substring string
  • Ans. 

    Return the longest palindromic substring of a given string.

    • A palindrome is a string that reads the same backward as forward.

    • Use dynamic programming to solve the problem efficiently.

    • Start with the longest possible substring and check if it's a palindrome.

    • If it's not, try the next longest substring until you find a palindrome.

    • Return the longest palindrome found.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java and react question
Round 2 - Technical 

(1 Question)

  • Q1. Little technical and project oriented question
Round 3 - Coding Test 

Basic hacker rank problem

Round 4 - CTO round 

(1 Question)

  • Q1. Asked few questions on react and java
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Group id in kafka consumer configuration
  • Ans. 

    Group id is a unique identifier for a group of consumers in Kafka consumer configuration.

    • Group id helps in coordinating the consumption of messages among multiple consumers in a consumer group.

    • Each consumer group should have a unique group id to ensure proper message distribution.

    • Changing the group id will result in the consumer group starting consumption from the beginning of the topic.

    • Group id is specified in the con...

  • Answered by AI
  • Q2. Recursive algorithm for multiplying 2 numbers
  • Ans. 

    Recursive algorithm for multiplying 2 numbers

    • Define a base case for when one of the numbers is 0

    • Use recursion to repeatedly add the second number to the result until the first number reaches 0

    • Consider handling negative numbers and optimizing for efficiency

  • Answered by AI
  • Q3. Spring filters implementation
  • Ans. 

    Spring filters are used to intercept HTTP requests and responses in a Spring application.

    • Spring filters can be used for logging, authentication, authorization, etc.

    • They are implemented using the javax.servlet.Filter interface.

    • Filters can be configured in the web.xml file or using annotations like @WebFilter.

    • Example: Implementing a logging filter to log incoming requests and outgoing responses.

  • Answered by AI
  • Q4. SQL query for first 5 biggest salaries
  • Ans. 

    SQL query to retrieve the first 5 biggest salaries from a table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to limit the results to the first 5 rows

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Write a program to check numer is palindrom or not.
  • Ans. 

    Program to check if a number is a palindrome or not.

    • Convert the number to a string to easily check for palindrome

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q2. What is the functionality of Lambda Expression in Java.
  • Ans. 

    Lambda expressions in Java are used to provide a concise way to represent anonymous functions.

    • Lambda expressions are used to define inline implementation of a functional interface.

    • They enable you to pass functionality as an argument to a method.

    • Lambda expressions are made up of parameters, an arrow, and a body.

    • Example: (a, b) -> a + b

  • Answered by AI
  • Q3. How to call default method of interface if class implemented multiple interfaces.
  • Ans. 

    To call a default method of an interface when a class implements multiple interfaces, use the interface name followed by the method name.

    • Use InterfaceName.super.methodName() to call the default method of a specific interface.

    • If a class implements multiple interfaces with default methods of the same name, you must specify the interface name to call the desired method.

    • Example: Interface1.super.defaultMethod() to call the

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Lots of technical questions but the interview was not technical..
  • Q2. What is JIT compiler
  • Ans. 

    JIT compiler stands for Just-In-Time compiler, which compiles code during runtime instead of ahead of time.

    • JIT compiler improves performance by compiling code on the fly as it is needed

    • It converts bytecode into native machine code for execution

    • Examples include Java HotSpot JIT compiler and .NET JIT compiler

  • Answered by AI
  • Q3. What are futures
  • Ans. 

    Futures are financial contracts that obligate the buyer to purchase an asset or the seller to sell an asset at a predetermined future date and price.

    • Futures are standardized contracts traded on exchanges, where the buyer agrees to purchase an asset at a future date for a price agreed upon today.

    • They are commonly used in commodities, currencies, and financial instruments trading.

    • Futures allow investors to hedge against ...

  • Answered by AI
  • Q4. What is GC and what types we have
  • Ans. 

    GC stands for Garbage Collection, a process in programming languages where unused memory is automatically reclaimed.

    • Types of GC include: Mark and Sweep, Reference Counting, Generational, and Incremental.

    • Mark and Sweep: Identifies and removes unreachable objects.

    • Reference Counting: Keeps track of the number of references to an object and deletes it when the count reaches zero.

    • Generational: Divides objects into different...

  • Answered by AI
  • Q5. Walk me through a trading process
  • Ans. 

    A trading process involves buying and selling financial instruments in the market.

    • Research and analysis of market trends and opportunities

    • Placing buy or sell orders through a trading platform

    • Monitoring and managing open positions

    • Executing trades based on predetermined strategies

    • Recording and analyzing trade data for performance evaluation

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between ref and out
  • Ans. 

    ref is used for passing a variable by reference, out is used for returning a variable by reference

    • ref is used for passing a variable by reference, allowing the method to modify the variable

    • out is used for returning a variable by reference, typically used for returning multiple values from a method

    • Example: int x = 10; SomeMethod(ref x); // x can be modified inside SomeMethod

    • Example: int result; SomeMethod(out result); /

  • Answered by AI
  • Q2. Ref needs to be initialized before passing and will change, out no need to be initialized and

Skills evaluated in this interview

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

Duration : 1 hours
Question type : Greedy algo question(DSA)
Platform : of any choice

Round 2 - LLD 

(1 Question)

  • Q1. LLDs Designing on any system
  • Ans. 

    LLDs are detailed design documents that describe the software architecture of a system.

    • LLDs typically include detailed information on modules, components, interfaces, and data for a system.

    • They help in understanding how different parts of the system interact and communicate with each other.

    • Examples of LLDs include class diagrams, sequence diagrams, and data flow diagrams.

    • LLDs are crucial for developers to implement the

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Coding plus behavioral plus LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Pretty simple and engaging tests, little preparations will do the trick

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basics of java script

I applied via Company Website and was interviewed in Jul 2022. There were 2 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 

General knowledge and development skills and new things..

Interview Preparation Tips

Topics to prepare for IDFC FIRST Bank Senior Software Engineer interview:
  • Software Development
  • New development
Interview preparation tips for other job seekers - I want to stand myself.. Make myself strong and more knowledgeable..
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2023. There were 2 interview rounds.

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

(2 Questions)

  • Q1. What are your roles in your current organization
  • Q2. How Micro-frontends work.
  • Ans. 

    Micro-frontends are a technique for breaking down a large frontend application into smaller, more manageable parts.

    • Each micro-frontend is a self-contained module that can be developed and deployed independently.

    • They communicate with each other through APIs or events.

    • Micro-frontends can be written in different languages and frameworks.

    • They can be combined to form a cohesive user interface.

    • Examples of companies using mic

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask your HR to share JD before going to there office. Because they call lot of people for few openings and reject you if your skills don't match. All the questions will be from your resume.

Skills evaluated in this interview

Westpac Interview FAQs

How many rounds are there in Westpac Senior Software Engineer interview?
Westpac interview process usually has 2 rounds. The most common rounds in the Westpac interview process are Resume Shortlist and Technical.
What are the top questions asked in Westpac Senior Software Engineer interview?

Some of the top questions asked at the Westpac Senior Software Engineer interview -

  1. Array of integers nums and an integer target, return indices of 2 numbers that ...read more
  2. Given a string, return the longest palindromic substring str...read more

Tell us how to improve this page.

Compare Westpac with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

State Bank of India

3.8
Compare

Axis Bank

3.8
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