Upload Button Icon Add office photos

Filter interviews by

Visa Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Visa Interview Questions and Answers

  • Q1. Stock Buy and Sell You have been given an array 'PRICES' consisting of 'N' integers where PRICES[i] denotes the price of a given stock on the i-th day. You are also given ...read more
    asked in Software Engineer interview
  • Q2. Maximum equal elements after K operations You are given an arbitrary array/list of integers 'ARR' of size ‘N’ and an integer ‘K’. You need to find the maximum number of e ...read more
    asked in Software Developer interview
  • Q3. Given a grid containing 0s and 1s and source row and column, in how many ways, could we reach form source to target. ( 1's represents a blockade and 0's represent accessa ...read more
    asked in Senior Software Engineer interview
View all 146 questions

Visa Interview Experiences

Popular Designations

137 interviews found

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Easy

2 coding problems were asked

Candidates who solved both the questions in the first 45 mins get shortlisted. 12 candidates including me got shortlisted.

  • Q1. Longest Common Subsequence

    You have been given two Strings “STR1” and “STR2” of characters. Your task is to find the length of the longest common subsequence.

    A String ‘a’ is a subsequence of a String ‘b...

  • Ans. Recursive Brute Force

    The basic idea of this approach is to break the original problem into sub-problems. Let us assume we want to find the length of the longest common subsequence of “STR1” and “STR2” whose length is ‘N’ and ‘M’ respectively. 

     

    Now, let us define a recursive function 

     

    LCS(Int I, int J, string STR1, string STR2)

    Which returns the length of the longest common subsequence of string STR1...

  • Answered Anonymously
  • Q2. Graph Connectivity Queries.

    You have been given a graph consisting of ‘N’ nodes and a threshold value ‘THRESHOLDVALUE’. Two different nodes ‘X’ and ‘Y’ are directly connected to each other if and only if t...

  • Ans. Breadth First Search.

    We will iterate over all the possible pairs of nodes and check if they are directly connected. We will build the graph and using a breadth-first search we can find all the connected components. If two nodes in the query are part of the same component insert ‘1’ otherwise ‘0’ in the vector/list ‘ans’.


     

    We will apply the algorithm as follows:-

    • Declare a list of list/vector ‘adj’ of size ‘n’+1 wher...

  • Answered Anonymously
Round 2 - HR 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Round 2 : HR + Technical Round Time -60 Mins
Firstly we greet each other and then we have talked about my projects and stuff. After that, he gave me some technical questions and I have to choose any three of them and write the code for them. I finished with all the three questions in about 15-20 min since i have solved similar questions while practicing.
What are the various formatting tags in HTML?
What is Pattern Matching in SQL?

After solving those questions we have discussed about our city since i and the interviewer both are from the same city, after that we were finished the interview.

After a very stressful night, the Next day results were declared and 7 out of 12 candidates including me got selected for the internship.

  • Q1. Snake and Ladder

    You have been given a Snake and Ladder Board with 'N' rows and 'N' columns with the numbers written from 1 to (N*N) starting from the bottom left of the board, and alternat...

  • Ans. BFS

    We will use Breadth-First Search to find the shortest path from cellNumber 1 to cellNumber N*N.

    1. We will maintain a queue of cellNumber where the front of the queue will always contain a cell which can be reached by minimum dice throw from starting cell (cellNumber = 1).
    2. Create a minDiceThrow array of size N*N initialise it with the maximum value (INT_MAX)
    3. Start with pushing cellNumber 1 and updating minDiceThrow[1] = 0...
  • Answered Anonymously
  • Q2. Second Most Repeated Word

    You are given an array of strings ‘ARR’. You have to find out the second most repeated word in the array ‘ARR’. It is guaranteed every string occurs a unique number of times in th...

  • Ans. Hashing

    Iterate through the array and store the frequency of each string in the array. Find out the maximum frequency word which occurs in the array and print the word which has the maximum frequency but has less frequency than the maximum one.

     

    Algorithm:-

     

    1. Initialize an empty string named ANS to store the final answer.
    2. Initialize a dictionary named FREQ to store the frequency of the words in the array.
    3. Iterate t...
  • Answered Anonymously
  • Q3. N Queens

    You are given an integer 'N'. For a given 'N' x 'N' chessboard, find a way to place 'N' queens such that no queen can attack any other queen on the chessboard.

    A ...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered Anonymously
  • Q4. Four Keys Keyboard

    Imagine you have a special keyboard with the following four keys:

    Key 1: (A): Print one ‘A’ on screen.
    Key 2: (Ctrl-A): Select the whole screen.
    Key 3: (Ctrl-C): Copy selection to buffe...
  • Ans. Recursion

    Approach: We can observe that if  ‘n’ < 7, the output is ‘n’ itself. Otherwise, if ‘n’ is greater than or equal to 7, then the optimal sequence of operations will end with a suffix of one Ctrl-A, one Ctrl-C, followed by one or several Ctrl-V’s.

     

    If F(n) given the maximum number of ‘A’s that can be printed by ‘n’ keystrokes and ‘x’ represent the number of Ctrl-V’s at the end, then recurrence relatio...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Fullstack developer Intern in BangaloreEligibility criteriaAbove 7 CGPA , Open for CSE, EE, MTH Branches onlyVisa interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, GraphsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 4-6 questions daily on leetcode, codingninjas, geeksforgeeks or interviewbit wherever it suits you.
Tip 2 : Do at least 1 good project or an internship in a start up before the internship season
Tip 3 : Focus on Competitive programming also it increases our problem-solving ability exponentially.

Application resume tips for other job seekers

Tip 1 : Make a decent resume with a good project or an intern.
Tip 2 : Never fake any point in the resume it will not gonna benefit you .

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Visa Fullstack Developer Intern Interview Questions and Answers

Q1. Longest Common SubsequenceYou have been given two Strings “STR1” and “STR2” of characters. Your task is to find the length of the longest common subsequence. A String ‘a’ is a subsequence of a String ‘b’ if ‘a’ can be obtained from ‘b’ by d... read more
View answer (4)

Fullstack Developer Intern Interview Questions asked at other Companies

Q1. Shortest path in an unweighted graphThe city of Ninjaland is analogous to the unweighted graph. The city has ‘N’ houses numbered from 1 to ‘N’ respectively and are connected by M bidirectional roads. If a road is connecting two houses ‘X’ a... read more
View answer (1)

I applied via LinkedIn and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. General question about bigadata, and it’s implementation
  • Q2. Managing program in distributed environments
  • Ans. 

    Managing programs in distributed environments requires effective communication, collaboration, and coordination.

    • Establish clear communication channels and protocols

    • Use collaboration tools such as video conferencing and project management software

    • Ensure all team members have access to necessary resources and information

    • Establish regular check-ins and progress updates

    • Anticipate and address potential challenges related to...

  • Answered by AI
  • Q3. Key challenges faced and its solutions
  • Ans. 

    Key challenges faced and solutions as a Program Manager

    • One of the key challenges is managing stakeholder expectations

    • Solution is to establish clear communication channels and set realistic goals

    • Another challenge is managing project scope and changes

    • Solution is to have a change management process in place and regularly review project scope

    • Resource allocation and management can also be a challenge

    • Solution is to have a cl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Job description to be followed

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I was interviewed before Apr 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to weblogic, jboss, docker Jenkins kubernetes
Round 2 - Coding Test 

Asked to create unix shell scripts for deployment in weblogic

Round 3 - HR 

(2 Questions)

  • Q1. Questions about compensation current and expected ctc
  • Q2. Gave me details about my role in visa

Senior System Analyst Interview Questions asked at other Companies

Q1. Do you write SQL Queries, or comfortable with it?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

It had 4 questions of moderate difficulty

Round 2 - Technical 

(3 Questions)

  • Q1. He went deep into my resume and asked questions from each line of it
  • Q2. Then he asked me that why you have only passed 10/14 test cases in 4th question
  • Q3. I said it was from dp and I had not studied dp properly

Interview Preparation Tips

Topics to prepare for Visa Software Developer interview:
  • Data Structures
  • Web Development
Interview preparation tips for other job seekers - Be strong on your DSA skills or development skills , be strong in either of one

Top Visa Software Developer Interview Questions and Answers

Q1. Maximum equal elements after K operationsYou are given an arbitrary array/list of integers 'ARR' of size ‘N’ and an integer ‘K’. You need to find the maximum number of elements which can be made equal to each other after performing at most ... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Visa interview questions for popular designations

 Software Engineer

 (19)

 Senior Software Engineer

 (14)

 Software Developer

 (11)

 Data Engineer

 (4)

 Data Scientist

 (4)

 Software Engineer Intern Trainee

 (4)

 Staff Engineer

 (3)

 Data Engineer Staff

 (2)

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

I applied via Referral and was interviewed before Jun 2022. There were 5 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 - Coding Test 

Hacker rank test based on string manipulation questions

Round 3 - Technical 

(2 Questions)

  • Q1. 2nd round will be technical
  • Q2. Yes mostly coding and DS questions you can also expect one logical IQ question
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was mostly behavioural and culture fit round with Manager
Round 5 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Notice period discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the coding round which will be 1st round hacker rank test

Top Visa Senior Software Engineer Interview Questions and Answers

Q1. Given a grid containing 0s and 1s and source row and column, in how many ways, could we reach form source to target. ( 1's represents a blockade and 0's represent accessable points)
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Get interview-ready with Top Visa Interview Questions

Senior Sof Interview Questions & Answers

user image Anonymous

posted on 20 Mar 2024

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

I applied via LinkedIn and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Hacker Rank online assessment test of 1 hr 30 mins

Jobs at Visa

View all

I applied via Recruitment Consultant and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Hackkerrank (3 questions 90 (LC-Medium &Easy)).
  • Q2. Round 1 DS&Alog Problem solving (LC- Medium) .Round 2 DS & Algo LC-Medium.Round 3 design LinkedIn Data modelling and HLD. Round 4 HLD+LLD+Data modelling for restaurant reservation system.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Practice & Practice.Be prepared for a System design interview.Trust me it will be easy

Top Visa Senior Software Engineer Interview Questions and Answers

Q1. Given a grid containing 0s and 1s and source row and column, in how many ways, could we reach form source to target. ( 1's represents a blockade and 0's represent accessable points)
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

I applied via Walk-in and was interviewed in Dec 2021. 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 - HR 

(2 Questions)

  • Q1. Tell me about your highest qualification?
  • Q2. Tell me your expected monthly income?
  • Ans. 

    I am expecting a competitive salary based on my experience and the responsibilities of the role.

    • I am open to negotiation based on the company's budget and benefits package.

    • I have researched the average salary range for this position in the industry and location.

    • I am confident in my skills and experience and believe I can bring value to the company.

    • I am looking for a fair and reasonable compensation package that reflect

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Visa Marketing Manager interview:
  • Educational Qualification
  • Marketing
  • Sales
  • Business Development
Interview preparation tips for other job seekers - Tell the correct information regarding the qualification.

Marketing Manager Interview Questions asked at other Companies

Q1. What the big opportunities to handle a sales in a worse situation i.e when prices &amp; demand are low &amp; vice versa
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Online test link given data structures were asked, array problem and string problem
Likewise Double Linked List was also asked

Round 3 - Technical 

(2 Questions)

  • Q1. Spring boot API endpoint description
  • Ans. 

    Spring Boot API endpoint is a URL that exposes the functionality of a web service.

    • API endpoints are the entry points for the client to access the server's resources.

    • Spring Boot provides a simple and easy way to create RESTful APIs.

    • Endpoints can be secured using Spring Security.

    • Endpoints can be documented using Swagger or Spring REST Docs.

    • Examples: /users, /products, /orders

  • Answered by AI
  • Q2. CI CD pipeline, Docker Kubernetes

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you are saying
Be thorough with ur logic and ur skills

Skills evaluated in this interview

Top Visa Senior Software Engineer Interview Questions and Answers

Q1. Given a grid containing 0s and 1s and source row and column, in how many ways, could we reach form source to target. ( 1's represents a blockade and 0's represent accessable points)
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

I applied via Approached by Company and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Coding Test 

LeetCode

Round 2 - Technical 

(1 Question)

  • Q1. Job profile related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Prepare well on programming skills
2. Prepare for job related topic
3. Keep your self updated with latest technology

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (8)

Visa Interview FAQs

How many rounds are there in Visa interview?
Visa interview process usually has 2-3 rounds. The most common rounds in the Visa interview process are Technical, Coding Test and HR.
How to prepare for Visa 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 Computer science, Python, Agile, SQL and Linux.
What are the top questions asked in Visa interview?

Some of the top questions asked at the Visa interview -

  1. Given a grid containing 0s and 1s and source row and column, in how many ways, ...read more
  2. Given 2 game scenarios for basketball, and given p as the probability of making...read more
  3. 1. High Level System Design -> Design Uber like Service. Follow up -> What woul...read more
How long is the Visa interview process?

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

Tell us how to improve this page.

Visa Interview Process

based on 74 interviews in last 1 year

Interview experience

4
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Visa

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
American Express Interview Questions
4.2
 • 355 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
Razorpay Interview Questions
3.6
 • 151 Interviews
MasterCard Interview Questions
4.0
 • 129 Interviews
Mobikwik Interview Questions
4.0
 • 44 Interviews
View all

Visa Reviews and Ratings

based on 341 reviews

3.6/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.7

Salary

3.4

Job security

3.4

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 341 Reviews and Ratings
HR Operation - Associate

Bangalore / Bengaluru

4-5 Yrs

Not Disclosed

Accounts Payable Analyst - Payments

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Executive Assistant

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
619 salaries
unlock blur

₹12.3 L/yr - ₹44 L/yr

Software Engineer
181 salaries
unlock blur

₹9.1 L/yr - ₹34.6 L/yr

Staff Software Engineer
148 salaries
unlock blur

₹20 L/yr - ₹60 L/yr

Senior Software Test Engineer
84 salaries
unlock blur

₹18 L/yr - ₹40 L/yr

Senior Data Engineer
83 salaries
unlock blur

₹20 L/yr - ₹42 L/yr

Explore more salaries
Compare Visa with

MasterCard

4.0
Compare

American Express

4.2
Compare

PayPal

3.9
Compare

State Bank of India

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview