Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Visa

Compare button icon Compare button icon Compare
3.5

based on 403 Reviews

Play video Play video Video summary
  • About
  • Reviews
    403
  • Salaries
    4.5k
  • Interviews
    143
  • Jobs
    154
  • Benefits
    52
  • Photos
    -
  • Posts
    4

Filter interviews by

Visa Software Engineer Interview Questions and Answers

Updated 15 Jan 2025

18 Interview questions

A Software Engineer was asked 6mo ago
Q. Explain the React lifecycle methods and how they work.
Ans. 

React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

  • Mounting: constructor, render, componentDidMount

  • Updating: render, componentDidUpdate

  • Unmounting: componentWillUnmount

A Software Engineer was asked 8mo ago
Q. Write code in Python using pandas to perform certain tasks.
Ans. 

Using pandas in Python to perform tasks for a Software Engineer interview question

  • Import pandas library

  • Read data from a CSV file using pandas

  • Perform data manipulation and analysis using pandas functions

  • Write the processed data back to a new CSV file

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
View answers (240)
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
View answers (526)
asked in Tech Mahindra
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
View answers (80)
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
View answers (22)
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
View answers (9)
View All
A Software Engineer was asked 07 Oct 2018
Q. What is a singleton?
Ans. 

Singleton is a design pattern that restricts the instantiation of a class to a single object.

  • Singleton ensures that only one instance of a class exists in the entire application.

  • It provides a global point of access to the instance.

  • Commonly used in scenarios where a single instance needs to coordinate actions across the system.

  • Example: Database connection manager, logger, configuration manager.

A Software Engineer was asked 03 Dec 2016
Q. Given the above Binary search tree, print the nodes in ascending order.
Ans. 

Print the given Binary search tree in ascending order

  • Traverse the left subtree recursively

  • Print the root node

  • Traverse the right subtree recursively

A Software Engineer was asked 03 Dec 2016
Q. Given an array, implement a Binary Search Tree.
Ans. 

Implement Binary Search Tree using given array of strings.

  • Sort the array in ascending order

  • Find the middle element and make it the root of the tree

  • Recursively create left and right subtrees using the left and right halves of the array

  • Repeat until all elements are added to the tree

A Software Engineer was asked 03 Dec 2016
Q. Which problem would you solve, and how and why?
Ans. 

Need more context on the question to provide an answer.

  • Please provide more information on the problem to be solved.

  • Without context, it is difficult to provide a solution.

  • Can you please provide more details on the problem statement?

A Software Engineer was asked 03 Dec 2016
Q. Given an array of stock prices, find where to buy and where to sell for maximum profit in O(n)
Ans. 

Find buy and sell points for maximum profit in an array of stock prices in O(n)

  • Iterate through the array and keep track of the minimum price seen so far

  • Calculate the profit at each index by subtracting the minimum price from the current price

  • Update the maximum profit and buy/sell points accordingly

  • Return the buy and sell points for maximum profit

Are these interview questions helpful?
A Software Engineer was asked 15 Dec 2015
Q. Given two basketball game scenarios and a probability 'p' of making a basket, determine the condition where game 1 is preferable to game 2. In game 1, you have one trial to make a basket to win. In game 2, ...
Ans. 

Comparing 2 basketball game scenarios with different number of trials and baskets required to win

  • Calculate the probability of winning in each game scenario using binomial distribution formula

  • Compare the probabilities to determine which game scenario is preferable

  • In game1, the probability of winning is p. In game2, the probability of winning is the sum of probabilities of making 2 or 3 baskets

  • If p is high, game1 is...

A Software Engineer was asked 15 Dec 2015
Q. Design an MVC controller system where, given a URL, you can invoke the correct controller. For example, given "xyz.com/a/b/c", how would you invoke the 'c' controller by going through 'a' and 'b'?
Ans. 

Design an MVC controller system to route URLs to the appropriate controllers based on the URL structure.

  • Define a routing mechanism that maps URLs to controller actions.

  • Use a hierarchical structure where each segment of the URL corresponds to a controller.

  • Example: For 'xyz.com/a/b/c', 'a' routes to 'AController', 'b' to 'BController', and 'c' to 'CController'.

  • Implement a method to parse the URL and invoke the corre...

A Software Engineer was asked 6mo ago
Q. Css box model, difference between padding and margin
Ans. 

Padding is the space inside the border of an element, while margin is the space outside the border.

  • Padding is used to create space between the content and the border of an element.

  • Margin is used to create space between the border of an element and other elements.

  • Padding affects the size of the content area, while margin affects the positioning of the element.

  • Example: padding: 10px will create 10 pixels of space in...

1 2

Visa Software Engineer Interview Experiences

19 interviews found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Oct 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the react lifecycle functions and how they work
  • Ans. 

    React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

    • Mounting: constructor, render, componentDidMount

    • Updating: render, componentDidUpdate

    • Unmounting: componentWillUnmount

  • Answered by AI
    Add your answer
  • Q2. Css box model, difference between padding and margin
  • Ans. 

    Padding is the space inside the border of an element, while margin is the space outside the border.

    • Padding is used to create space between the content and the border of an element.

    • Margin is used to create space between the border of an element and other elements.

    • Padding affects the size of the content area, while margin affects the positioning of the element.

    • Example: padding: 10px will create 10 pixels of space inside ...

  • Answered by AI
    Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations in CTC and variables?
  • Add your answer
  • Q2. Will you relocate to the location required?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare everything bookish! don't only speak related to your experience

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 2 DSA questions along with design patterns
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. 1 DSA question, design patterns and resume based
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What are the reasons you want to work for Visa?
  • Ans. 

    I want to work for Visa because of its innovative technology, global impact, and opportunities for growth.

    • Visa is a leader in the fintech industry, constantly developing cutting-edge technology solutions.

    • Visa has a global presence, allowing me to work on projects with international impact.

    • Visa offers opportunities for career growth and development, with a focus on employee advancement.

  • Answered by AI
    Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 May 2024

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Workday Integrations Questions
  • Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Workday Integrations Questions
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Two Sum of numbers with given target value
  • Add your answer
  • Q2. Calculate the time taken by kth person to collect n number of tickets
  • Ans. 

    The time taken by the kth person to collect n number of tickets can be calculated using a formula.

    • Use the formula: time = (n - 1) * k

    • Subtract 1 from n because the first person doesn't need to wait for anyone

    • Multiply the result by k to get the time taken by the kth person

    • Example: If n = 5 and k = 3, the time taken by the 3rd person would be (5 - 1) * 3 = 12

  • Answered by AI
    Add your answer
  • Q3. Seperation of even and odd numbers
  • Ans. 

    Separate even and odd numbers in an array

    • Iterate through the array and check if each number is even or odd

    • Create two separate arrays for even and odd numbers

    • Add the even numbers to the even array and odd numbers to the odd array

    • Return both arrays as the result

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 1 May 2024

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

Coding test link will be given

Round 2 - Technical 

(1 Question)

  • Q1. Mostly on DSA and problem solving
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Mostly on your Resume and basic HR Questions
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test consisted of basic coding questions on codesignal platform

Round 2 - Technical 

(2 Questions)

  • Q1. Describe the work experience
  • Add your answer
  • Q2. Write code in python using pandas to perform certain tasks
  • Ans. 

    Using pandas in Python to perform tasks for a Software Engineer interview question

    • Import pandas library

    • Read data from a CSV file using pandas

    • Perform data manipulation and analysis using pandas functions

    • Write the processed data back to a new CSV file

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Dec 2022

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 Nov 2022. 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 

(3 Questions)

  • Q1. What is your strength
  • Ans. 

    My strength is problem-solving and analytical thinking.

    • I have a strong ability to analyze complex problems and break them down into smaller, manageable tasks.

    • I am skilled in identifying patterns and finding efficient solutions.

    • I have experience in using various programming languages and tools to solve problems.

    • I am a quick learner and adapt well to new technologies and frameworks.

    • I have a track record of successfully d...

  • Answered by AI
    View 1 more answer
  • Q2. What is class in java
  • Ans. 

    A class in Java is a blueprint or template for creating objects that encapsulate data and behavior.

    • A class can contain fields, methods, constructors, and nested classes

    • Objects are instances of a class

    • Inheritance allows a class to inherit properties and methods from another class

    • Polymorphism allows objects of different classes to be treated as if they are of the same class

    • Example: class Car { String make; int year; void...

  • Answered by AI
    Add your answer
  • Q3. Blue print is the java class
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Coding is very easy to work
My strength is quick learner

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2022

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 - Coding Test 

Good questions in less time, one hard dynamic programming problem

Round 3 - One-on-one 

(2 Questions)

  • Q1. Great interviewer and had a great discussion about systems design and some basic coding problems were there.
  • Add your answer
  • Q2. How Visa works Can you design a scalable file access system like dropbox or google drive?
  • Ans. 

    Visa is a payment processing company that facilitates electronic funds transfers globally.

    • Visa operates a network that connects financial institutions, merchants, and consumers worldwide.

    • The company provides payment products and services, including credit and debit cards, prepaid cards, and digital wallets.

    • Visa's payment processing system involves authorization, clearing, and settlement of transactions.

    • To design a scal...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your data structure and algorithm skills. You can choose any language and the platform was hackerrank.

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Sep 2022

I applied via Campus Placement and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Coding Test 

90 minutes hackerrank test, 3 questions 1 easy 2 medium.

Round 2 - Technical 

(1 Question)

  • Q1. Resume based and questions based on my personal projects
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. CN,OS and DBMS questions.
  • Add your answer
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round and hr questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and brush up on all the technical aspects of Software Engineering.
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
a team lead
I left a job interview after just one question. Was that a mistake?
Today, I had an interview for a job I was really looking forward to. The job description seemed great, the pay was okay, and the company had good feedback online. I went in, shook hands with the person in charge of hiring, and we sat down to talk. Then, they asked their first question: "How do you feel about working extra hours without pay?" I actually laughed because I thought it was a joke. But the interviewer just looked at me, waiting for my answer. I asked if working extra time was required and if they paid for it. They said, "Well, we expect people to stay as long as they need to finish their work. Everyone here really cares about what they do, so we don't keep track of extra hours." I just stood up and said, "Thank you for your time, but this job isn't right for me," and then I left. Now, I'm wondering if I did the wrong thing. Should I have stayed and listened to more about the job? Or was leaving the right decision?
Got a question about Visa?
Ask anonymously on communities.
More about working at Visa
  • HQ - Foster City,California, United States
  • FinTech
  • 1k-5k Employees (India)
  • Public
  • Internet
  • IT Services & Consulting

Visa Interview FAQs

How many rounds are there in Visa Software Engineer interview?
Visa interview process usually has 2-3 rounds. The most common rounds in the Visa interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Visa Software Engineer 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 Visa. The most common topics and skills that interviewers at Visa expect are Javascript, SQL, Python, XML and Oracle.
What are the top questions asked in Visa Software Engineer interview?

Some of the top questions asked at the Visa Software Engineer interview -

  1. Given 2 game scenarios for basketball, and given p as the probability of making...read more
  2. Design a mvc controller system where given a url, I am able to invoke the right...read more
  3. Given an array of stock prices, find where to buy and where to sell for maximum...read more

Tell us how to improve this page.

Visa Interviews By Designations

  • Visa Software Engineer Interview Questions
  • Visa Senior Software Engineer Interview Questions
  • Visa Software Developer Interview Questions
  • Visa Data Scientist Interview Questions
  • Visa Software Engineer Intern Trainee Interview Questions
  • Visa Data Engineer Interview Questions
  • Visa Staff Engineer Interview Questions
  • Visa Product Manager Interview Questions
  • Show more
  • Visa System Analyst Interview Questions
  • Visa Intern Interview Questions

Interview Questions for Popular Designations

  • Senior Software Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Softwaretest Engineer Interview Questions
  • Software Engineer Trainee Interview Questions
  • Software Developer Interview Questions
  • Software Developer Intern Interview Questions
  • Software Development Engineer Interview Questions
  • Junior Software Developer Interview Questions
  • Show more
  • Full Stack Software Developer Interview Questions
  • Junior Software Engineer Interview Questions

Overall Interview Experience Rating

4.3/5

based on 12 interview experiences

Difficulty level

Easy 25%
Moderate 50%
Hard 25%

Duration

Less than 2 weeks 33%
2-4 weeks 67%
View more

Top Skills for Visa Software Engineer

Web Development Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
200 Questions

Software Engineer Interview Questions from Similar Companies

Paytm
Paytm Software Engineer Interview Questions
3.2
 • 51 Interviews
FIS
FIS Software Engineer Interview Questions
3.9
 • 25 Interviews
PayPal
PayPal Software Engineer Interview Questions
3.9
 • 25 Interviews
MasterCard
MasterCard Software Engineer Interview Questions
3.9
 • 11 Interviews
Fiserv
Fiserv Software Engineer Interview Questions
3.0
 • 9 Interviews
Razorpay
Razorpay Software Engineer Interview Questions
3.6
 • 6 Interviews
Broadridge Financial Solutions
Broadridge Financial Solutions Software Engineer Interview Questions
3.9
 • 6 Interviews
PayU Payments
PayU Payments Software Engineer Interview Questions
3.5
 • 5 Interviews
Verifone
Verifone Software Engineer Interview Questions
3.3
 • 5 Interviews
CapitalOne
CapitalOne Software Engineer Interview Questions
3.7
 • 4 Interviews
View all
Visa Software Engineer Salary
based on 382 salaries
₹7.8 L/yr - ₹32 L/yr
114% more than the average Software Engineer Salary in India
View more details

Visa Software Engineer Reviews and Ratings

based on 23 reviews

3.4/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.3

Salary

3.8

Job security

3.5

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 23 Reviews and Ratings
Software Engineer Jobs at Visa
Visa
Staff SW Engineer

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Visa
Staff SW Engineer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Visa
SW Engineer

Bangalore / Bengaluru

1-2 Yrs

₹ 11.4-28 LPA

Explore more jobs
Visa Salaries in India
Senior Software Engineer
667 salaries
unlock blur

₹14.5 L/yr - ₹45 L/yr

Software Engineer
382 salaries
unlock blur

₹7.8 L/yr - ₹32 L/yr

Staff Software Engineer
188 salaries
unlock blur

₹24 L/yr - ₹62 L/yr

Senior Data Engineer
102 salaries
unlock blur

₹20 L/yr - ₹49 L/yr

Staff Engineer
96 salaries
unlock blur

₹19.2 L/yr - ₹64 L/yr

Explore more salaries
Compare Visa with
MasterCard

MasterCard

3.9
Compare
American Express

American Express

4.1
Compare
Paytm

Paytm

3.2
Compare
FIS

FIS

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Visa Interview Questions >
  • Visa Software Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter