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 Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The coding test was conducted on Hackerrank platform. The test was in the evening. There were two coding questions of easy difficulty. The test was proctored, our webcam was on but not the mic. Also we were not allowed to switch tabs.
About 360 students sat in this round out which 15 were shortlisted for the next interview round.

  • Q1. 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 elements which can be made e...

  • Ans. 

    This was a very easy question as I just had to traverse both the array and maintain a count variable and a variable to store last maximum equal element encountered which I initialized to a very small number (like INT_MIN in C++) . Now while traversing whenever you encounter equal elements which are greater than last maximum equal elements then increment count by 1. In the end just print count.

  • Answered Anonymously
  • Q2. Number of Pairs with Given Sum

    You have been given an integer array/list(arr) and a number 'Sum'. Find and return the total number of pairs in the array/list which when added, results equal to the ...

  • Ans. 

    Step 1 : Create a map and store count of each unique element in the array.
    Step 2 : Maintain a count variable to store the number of unique pairs of elements whose sum is K.
    Step 3 : Traverse the array. Let the array be called arr and arr[i] is current element in array while traversing. If value arr[i] and K-arr[i] in map is greater than 0 then increment count and make value of arr[i] and K-arr[i] in map as 0.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as SDE - 1 in BangaloreEligibility criteria9 CGPAVisa interview preparation:Topics to prepare for the interview - Algorithms, Array, Dynamic Programming, Trees, Heap, Linked List, Backtracking, OOPS, Operating System, Database Management SystemTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare data structures and algorithms thoroughly and practice atleast 2 to 3 questions daily for 4-5 months consistently.
Tip 2 : Have few good projects in your resume and also prepare your core subjects like Operating System, DBMS.
Tip 3 : Before interview do a little research about the company.

Application resume tips for other job seekers

Tip 1 : Mention at least 2 good projects.
Tip 2 : You should be able to defend whatever you have put on your resume so don't mention anything false.

Final outcome of the interviewSelected

Skills evaluated in this interview

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)

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was an elimination round. There were 2 coding questions. Both questions were of medium level and I solved them in a given time. After this round, 29 students got shortlisted and I was one of them.

  • Q1. Ninja And The Dance Competetion

    Ninja has been asked to organize a dance competition. Ninja decided that he will take individual entries and then will divide them into pairs. As part of the entry, he asked...

  • Ans. 

    I solved this question using the map in O(n) time complexity. First I stored the count of elements in an array then by checking the condition(k > 0 && map.containsKey(i + k) || k == 0 && map.get(i) > 1), I incremented the result by one every time when condition satisfied. Below is my code for the same.

    class Solution {
    public int findPairs(int[] nums, int k) {
    Map map = new HashMap();
    for(int num : nu...

  • Answered Anonymously
  • Q2. Maximum length sub-array having absolute difference of adjacent elements either 0 or 1.

    Given an array ‘A’ of ‘N’ integers, you need to find the maximum length of the sub-array such that the absolute diffe...

  • Ans. 

    This was a simple array problem. I solved this using question as:
    Starting from the first element of the array, find the first valid sub-array and store its length then starting from the next element (the first element that wasn’t included in the first sub-array), find another valid sub-array. Repeat the process until all the valid sub-arrays have been found then print the length of the maximum sub-array.

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round on Zoom. The interviewer was very friendly. He gave me one coding problem. I solved the problem and then he asked to improve time and space complexity if possible. I explained my logic very well. After this question, he asked to me explain 3NF(3rd normal form). Then we had some discussion on OOPs concepts.

  • Q1. LRU Cache Implementation

    Design and implement a data structure for Least Recently Used (LRU) cache to support the foll...

  • Ans. Array Approach

    We will use an array of type Pair<key, value> to implement our LRU Cache where the larger the index is, the more recently the key is used. Means, the 0th index denotes the least recently used pair, and the last index denotes the most recently used pair.

     

    The key will be considered as accessed if we try to perform any operation on it. So while performing the get operation on a key, we will do a ...

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This was another technical round. The interviewer gave me a coding problem to solve.
 

  • Q1.  Valid String

    You have been given a string 'S' containing only three types of characters, i.e. '(', ')' and '*'.

    A Valid String is defined as follows:

    1. Any left parenth...
  • Ans. Brute Force

    We can try each of the three possibilities for every asterisk in the string with the help of recursion. 

     

    We will use a temporary string which will keep track of our current possible string. In the end, we can linearly check each possible string. If any of the possible string is a valid string, we print ‘Yes’, otherwise ‘No’.

    Space Complexity: O(n)Explanation:

    O(N), where ‘N’ is the length of the str...

  • Answered Anonymously
Round 4 - HR 

Round duration - 60 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from GNA University. I applied for the job as SDE - 1 in BangaloreEligibility criteria6.5 CGPAVisa interview preparation:Topics to prepare for the interview - Data Structure, OS, DBMS, System Design, Dynamic ProgrammingTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Work on your problem-solving skills. Solve as many questions as you can.
Tip 2 : Communication skills are very important in interviews.
Tip 3 : Do some good projects.

Application resume tips for other job seekers

Tip 1 : Mention some good projects on your resume and be prepared.
Tip 2 : Do not put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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)

Sr.System Engnieer/IT DR Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2021

I applied via LinkedIn

Interview Questionnaire 

3 Questions

  • Q1. About ITDR and types of tests
  • Q2. What to do with failed IT DR test or findings
  • Q3. How to manage third party IT resilience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared to spend time during interview. Visa tems keep candidate well informed.

Interview Questionnaire 

2 Questions

  • Q1. Questions on the JD and Resume?
  • Q2. Prepare well for JD and the things mentioned in your resume.

System Analyst Interview Questions asked at other Companies

Q1. What will you do if you buy a hardware system that does not contain any software in it. And you have no money to buy a software. What will you do in a situation like that?
View answer (3)

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)

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

test timing: 7-8 pm
2 programming questions
webcam proctored

  • Q1. Minimum Cost to Reach End

    You are given an array “ARR” of 'N' integers and an integer 'K'. You can move from any index 'i' to index 'j' if j ≤ i + K. The cost of moving from...

  • Ans. Dynamic Programming

    The idea is to use a bottom-up dynamic programming approach instead of a memoization approach. In this, we use the recurrence relation of memoization approach as dp(j) = min{dp(i) + abs(arr[i] – arr[j])} where i is in [0, N-1] and j is in [i + 1, j + K + 1], and K is number of jumps allowed. 

     

    Algorithm:

    1. Create a dp[]  of size N and Initialize with a maximum value of Integer
    2. Set dp[0]=0
    3. We...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPA and above, no dead backlogsVisa interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, OOPS, Computer Architecture, Algorithms, Bit Manipulation, Operating System, Computer Networking, Cloud conceptsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Ability to apply data structures in questions(practice graph and Tree questions)
Tip 2 : Thorough knowledge of the projects done
Tip 3 : Good knowledge about computer science concepts

Application resume tips for other job seekers

Tip 1 : Mention projects that you have done yourself and are thorough with 
Tip 2 : mention soft skills

Final outcome of the interviewRejected

Skills evaluated in this interview

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)

Get interview-ready with Top Visa Interview Questions

Interview Questionnaire 

1 Question

  • Q1. Basic linux docker ansible questions.

System Analyst Interview Questions asked at other Companies

Q1. What will you do if you buy a hardware system that does not contain any software in it. And you have no money to buy a software. What will you do in a situation like that?
View answer (3)

Jobs at Visa

View all

I applied via LinkedIn and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions Related to Both Backup and Storage.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident.
You need to have knowledge on Both Backup and Storage.
Python, Scripting will be a Plus.

Storage Administrator Interview Questions asked at other Companies

Q1. How many types of topologies in San and explain it one by one
View answer (3)

Data Engineer Interview Questions & Answers

user image Ankur Singh

posted on 16 Jun 2021

Interview Questionnaire 

1 Question

  • Q1. Mostly it was on SQL based and spark internals

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

I applied via Walk-in and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

DSA Problems on LinkedList and Stack.

Round 2 - One-on-one 

(1 Question)

  • Q1. HM Round on projects and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the problems keenly and ask necessary questions.

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Hacker rank long coding questions with questions for python,c++,javascript , data bast related questions

Round 2 - Technical 

(1 Question)

  • Q1. Javascript related some coding questions and some data base related

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well.good luck for your journey, prepare coding

Top Visa Software Engineer Interview Questions and Answers

Q1. Stock Buy and SellYou 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 an integer 'K' denoting the number of possible transactions you can ma... read more
View answer (4)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)

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

Manager

Mumbai

6-8 Yrs

Not Disclosed

Accounts Payable Analyst - Payments

Bangalore / Bengaluru

4-8 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