Upload Button Icon Add office photos

Filter interviews by

Visa Interview Questions, Process, and Tips for Freshers

Updated 18 Dec 2024

Top Visa Interview Questions and Answers for Freshers

  • 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 e ...read more
    asked in Software Developer interview
  • Q2. Given 2 game scenarios for basketball, and given p as the probability of making a basket in an attempt, I have to understand the condition where game1 would be preferable ...read more
    asked in Software Engineer interview
  • Q3. 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 ...read more
    asked in Fullstack Developer Intern interview
View all 39 questions

Visa Interview Experiences for Freshers

Popular Designations

27 interviews found

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 campus placement at Indian Institute of Technology (IIT), Chennai and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Given an array, Implement 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

  • Answered by AI
  • Q2. Given the above Binary search tree, print 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

  • Answered by AI
  • Q3. 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

  • Answered by AI
  • Q4. Resume based
  • Q5. What are three problems Chennai faces?
  • Ans. 

    Chennai faces problems related to water scarcity, traffic congestion, and pollution.

    • Water scarcity due to inadequate rainfall and poor management of water resources.

    • Traffic congestion due to the increasing number of vehicles and poor road infrastructure.

    • Pollution caused by industries, vehicular emissions, and improper waste disposal.

  • Answered by AI
  • Q6. Which one 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?

  • Answered by AI
  • Q7. What is most interesting thing about Visa?
  • Ans. 

    Visa is a global payments technology company that connects consumers, businesses, banks and governments in more than 200 countries and territories.

    • Visa operates the world's largest retail electronic payments network.

    • VisaNet, the company's global processing system, handles more than 65,000 transaction messages a second.

    • Visa is constantly innovating to improve payment security and convenience, with initiatives such as Vi...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 4 Coding questions on Hackerrank platform, one and half hour time. I am not going to reveal the questions here, but one was a basic binary tree implementation and the other three were algorithmic and mathematical problems. They were kinda hard to solve in an hour and half. I could do only 1 and half of the other one. I got 115/300 points on that. I was one of the 16 people selected for the interview.
Tips: It all depends on how well you can focus on the test day. Just practice a lot on hackerrank.
Duration: 1 hour 30 minutes
Total Questions: 4

Round: Technical Interview
Experience: The first two questions I was able to do fast enough. I was also asked a few questions on my resume and coding-related internship. The last one, I showed an O(n*n) algorithm first and then modified it to O(n). Around 45 minutes.
Tips: Be thorough on the coding part in your resume. Think out aloud!

Round: Technical + HR Interview
Experience: Just a few normal questions regarding my projects and my favorite course and it's application to Visa. 15 minutes.
Tips: Once again, be thorough on your resume.

Round: HR Interview
Experience: Once again a normal round, just random questions as to whether I am interested and good enough in communication. 15 minutes.
Tips: Don't get shaken. Be ready for all kinds of questions. Especially about Visa relation to what you do

Skills: Smart Coding
College Name: IIT Madras

Skills evaluated in this interview

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 (169)

Software Engineer Interview Questions & Answers

user image Pranali Yawalkar

posted on 14 Dec 2015

Interview Questionnaire 

7 Questions

  • Q1. Discussion on my internships and course projects.
  • Q2. My field of interest, how well have I fared in it.
  • Q3. Design a mvc controller system where given a url, I am able to invoke the right controller. Eg, given "xyz.com/a/b/c", I should be able to invoke c controller by going through a and b
  • Q4. Design autocomplete in IDEs
  • Ans. 

    Autocomplete in IDEs helps developers write code faster by suggesting code snippets and completing code as they type.

    • Autocomplete should suggest code snippets based on the context of the code being written

    • Autocomplete should prioritize suggestions based on frequency of use

    • Autocomplete should also suggest variable and function names

    • Autocomplete should be customizable to allow for user-defined snippets and suggestions

    • Exa...

  • Answered by AI
  • Q5. What is my weakness
  • Ans. 

    My weakness is public speaking.

    • I tend to get nervous when speaking in front of large groups.

    • I am working on improving my public speaking skills by practicing and seeking feedback.

    • I have taken courses and attended workshops to help me overcome my fear of public speaking.

  • Answered by AI
  • Q6. Given 2 game scenarios for basketball, and given p as the probability of making a basket in an attempt, I have to understand the condition where game1 would be preferable over game2. In first game, I have ...
  • 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 pref...

  • Answered by AI
  • Q7. Given a dictionary of words, I have to go from one word to another in least number of transitions where a transition is a defined as changing any letter of the current word such that the new word is also i...

Interview Preparation Tips

Round: Test
Experience: The test was on hackerrank.
Tips: * Fast coding and problem solving required
* Time crunch
* The test is valued a LOT in the hiring process
Duration: 120 minutes
Total Questions: 4

Round: Technical Interview
Experience: Question 1 : He tried to take the discussion to web based technologies to which I straightly told I don’t know. Not sure if that was a good decision. Nevertheless, he went over my resume a lot of times and asked about various projects.
Question 2 : Discussed the various projects related to it.
Question 3 : He asked this question because I had worked on django during my FB internship. I proposed a tree based structure. xyz.com/a/b/c ---> b is child of a, c is child of b.

Question 4 : Next he moved to a very interesting question. Given a simple text editor, I want to facilitate autocomplete feature. We discussed about syntactic methods using language specific keywords. I suggested a trie based implementation which he liked. Later he asked me to improve and redirected me to using scope of the variables, and grammar of the language. We discussed about all the steps I did in language translators lab (macrojava -> minijava -> typechecking -> miniIR -> microIR -> miniRA ->Mips) where we built a Java compiler in Java. We later hopped back to original question and I suggested that we can use grammar to to store multiple (nested kind of) tries for different scope. He asked me how would I define “scope”. He gave me a scenario which helped me come up with the nested trie structure
int a;
{
int b;
{
int c; //a b c can be used
}
{
int d; //a b d can be used
}
}
He then asked me details of how I would code. I said we could use the respective visitors and maintain the current trie root for scope. He liked it but I missed at 2 places :
1. He asked me about token generation used in a compiler and I said flex and bison. I was expected to elaborate a bit.
2. He asked me how the grammar is generated and how the visitors are invoked. I couldn’t explain properly because I was not thorough with it.
Tips: * Keep smiling in the interviews.
* My interviewer had hopped from Microsoft to Visa. We had a short detailed discussion on how the transition was and what drove him to do that.
* It’s always good to know about the company to pick up interesting discussions, read up latest articles and news
* The interviewers want to see if you are passionate about what they are building. Their PPT (Pre Placement Talk) was also focussed majorly on the technologies they are building.
* If you take a question in a direction, make sure you are very very thorough with it. I took it in the direction of compilers, but couldn't make the transition seamlessly because I wasn't thorough with a lot of things (like token generation, visitor invocation).
* Not sure if telling upfront that you don't know about web technologies when you are applying for a profile that might need it is a good idea or not.


Round: Technical Interview
Experience: I think he was a senior person and spoke very passionately about the work that is happening in visa Bangalore office.

Question 1 : I said maybe I should have learnt a little about web based technologies. I think he was looking for a more generic answer.
Question 2 : I went ahead with calculating the expected score where my score random variable = 1 with probability p, and 0 with probability (1-p). I conditioned that expected score of game1 > game2 which would give me the range of p. I goofed up the equations twice but he said he liked my approach and I was just there

Question 3 : I suggested building a graph where a node is a word and an edge means a transition, and then performing BFS. He said that was obvious and that he was more interested in knowing how I build the graph. I suggested a method to reduce the number of string comparisons by storing a count vector with each word. Count vector is a 26 length vector where count[i] = number of times that letter occurs in the word. I would do string comparison to identify neighbours only if the difference in count vectors in 2. Eg, cot = cat - a + o. String comparison is still needed because of false positives. Eg, oct = cat - a + o but cat -> oct is not a valid transition. He liked my approach and asked me to code, discussed the complexity.
Tips: * Don't be naive around a senior engineer. Be confident.
* Explain your approach before going ahead solving it. I missed that in Q1 and for a long time he didn't know what I was heading towards.
* Write clean code, practice coding on paper to make sure you write compilable code. Shabby code is a turn off.
* Show passion for the company you are applying for.

General Tips: * Be friendly and keep smiling.
* Know about the company, well in detail. Recent news, articles, acquisitions, organisational changes, new offices, new product, etc.
* Know about the volume the company handles, certain mind boggling figures, what the company *does not* do
* If you are introducing yourself as an expert in a certain field, be prepared for questions like "How will you contribute to our company with your expertise" type of questions.
* Be very very thorough with every single thing you write on your resume. A small point you weren't sure about might become the basis of your whole interview. Don't write things you are unsure of, or have worked very little on.
Skill Tips: * I think I didn’t take Visa very seriously. I was assuming they won’t take a undergrad and they won’t take me because I have 0 knowledge in web based technologies. I might have acted a little cocky.
* They had nice pie diagrams which shows that they had done thorough research about each and every candidate based on resume and the coding test.
* They value the coding test a lot.
* Be very thorough with the projects you write on resume. They will give you a problem which won't be straightforward and will map onto one of your course projects. You are expected to do the mapping seamlessly. Every bit of the discussion you have with the interviewer can be your next problem.
* Brush up on web based technologies if you can.
* There will be a HR round as well if you clear the technical interviews.

Skills: Maths(esp Probability), Design, Passion, Web Technologies, Technical Skill And Speaking Skill, Coding Skills
College Name: IIT Madras
Motivation: * Been the leader since more than half a century, been through the technological revolution.
* Revolutionising payments architecture. Building something of greatest need, so elegant and optimised, yet producing such consistent performance.
* Keeping up with the need of the generation by introducing features which are brand new. Eg, “all-purpose credit card”.
* Loved their PPT (Pre Placement Talk). Volume of the data and processing is IMMENSE. Billions of transactions in a year voluming up to trillions. More than 200 countries in the world --> these stats are HUGE.
* Fraud detection is a space I would have loved to work on given that I come from a Data Mining background.

Funny Moments: Chucked out before HR round :P

Skills evaluated in this interview

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 (169)

Interview Questions & Answers

user image Anonymous

posted on 16 May 2015

Interview Preparation Tips

Round: Technical Interview
Experience: majorly focused on the projects I had done as part of my curriculum. Then some basic coding stuff where the interviewer was mainly trying to see the approach. Some questions related to sorting techniques.
He was also interested in the real time projects that I worked on during my interns at Amazon. So I was asked about all that I did there and then some questions on spring framework and dependency injection (amazon intern project related stuff).

Round: Technical Interview
Experience: Here the discussion started with OS and networking. General questions on race condition, semaphores, raid structure, deadlocks as well as network layer, data-link layer and transport layer (One who is well acquainted with all the basics of subject can easily answer them all). Some machine learning discussion on classifiers, Artificial Neural Networks, and genetic algorithms as well as assembly language programming. A code for a problem which could be solved using BST and then optimizing it.

Round: HR Interview
Experience: First the interviewer started with explaining kind of work Visa does and their plans for the technology hub they are opening up in Bangalore and my interests and all. Then some questions related to writing POJO(Plain Old Java Objects) classes and tests for the code (unit tests, integration tests) based on what I mentioned in my resume as part of my intern project. Some aptitude questions and programming stuff again and then about Object Oriented Programming (OOPs) concepts.

College Name: NA

Visa interview questions for popular designations

 Software Engineer

 (18)

 Senior Software Engineer

 (14)

 Software Developer

 (11)

 Data Engineer

 (4)

 Data Scientist

 (4)

 Software Engineer Intern Trainee

 (4)

 Data Engineer Staff

 (2)

 Intern

 (2)

Interview Questions & Answers

user image Anonymous

posted on 12 May 2015

Interview Questionnaire 

23 Questions

  • Q1. First he told me about himself, then he asked about project
  • Q2. My one project was basic UNIX shell,so he asked me to make one and try to illustrate(mainly focus on FORK and EXEC)
  • Q3. SDLC from software engg
  • Q4. Tell me about yourself and then project..(try to elaborate project as much as u can)
  • Q5. Digital Signature (Don’t start with its definition,always start with situation/example considering there is no digital signature and then its use and importance )
  • Q6. D-dos attack and how to stop it.(i told it with help of IDS and IPS)
  • Q7. Explain working of IDS and IPS
  • Ans. 

    IDS and IPS are security systems that monitor network traffic for malicious activity and prevent attacks.

    • IDS (Intrusion Detection System) detects and alerts about potential attacks by analyzing network traffic and comparing it to known attack patterns.

    • IPS (Intrusion Prevention System) goes a step further by actively blocking malicious traffic and preventing attacks from happening.

    • Both systems use a combination of signa...

  • Answered by AI
  • Q8. Context switching,Starvation ,aging (Again try to explain)
  • Q9. Difference b/w Micro kernel and macro kernel
  • Ans. 

    Microkernel is a minimalistic approach where only essential services are kept in kernel space while macrokernel has more services in kernel space.

    • Microkernel has a small kernel with minimal services while macrokernel has a large kernel with many services.

    • In microkernel, most services run in user space while in macrokernel, most services run in kernel space.

    • Microkernel is more secure and reliable while macrokernel is fa...

  • Answered by AI
  • Q10. Difference b/w argument and parameter
  • Ans. 

    Argument is the actual value passed to a function, while parameter is a variable used to define a function.

    • Parameter is a variable in the function declaration, while argument is the actual value passed to the function.

    • Parameter is used to initialize the function's variables, while argument is used to pass values to the function.

    • Example: function add(a, b) { return a + b; } add(2, 3); Here, a and b are parameters, while

  • Answered by AI
  • Q11. Indexes in DBMS
  • Ans. 

    Indexes in DBMS are used to improve the performance of database queries.

    • Indexes are data structures that allow for faster retrieval of data from a database.

    • They work by creating a separate structure that contains a subset of the data in the table, organized in a way that makes it faster to search.

    • Indexes can be created on one or more columns in a table.

    • Examples of indexes include primary keys, unique indexes, and clust...

  • Answered by AI
  • Q12. Diff b/w Interface and Abstract class
  • Ans. 

    Interface is a blueprint of a class while Abstract class is a partially implemented class.

    • An interface can only have abstract methods while an abstract class can have both abstract and non-abstract methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance while abstract classes are used to provide a common base for related classes.

    • ...

  • Answered by AI
  • Q13. Different topology in networking
  • Ans. 

    Different topology refers to the arrangement of nodes in a network.

    • Common topologies include bus, star, ring, mesh, and hybrid

    • Bus topology connects all devices to a single cable

    • Star topology connects all devices to a central hub

    • Ring topology connects devices in a circular loop

    • Mesh topology connects devices in a network where each device has a direct connection to every other device

    • Hybrid topology is a combination of tw...

  • Answered by AI
  • Q14. Where should u prefer BUS topology instead of ring topology and vice verse
  • Ans. 

    BUS topology is preferred for small networks while ring topology is preferred for larger networks.

    • BUS topology is easier to install and maintain than ring topology.

    • Ring topology is more fault-tolerant than BUS topology.

    • BUS topology is suitable for small networks with few devices while ring topology is suitable for larger networks with many devices.

    • Ring topology is more expensive than BUS topology.

    • Examples of BUS topolo...

  • Answered by AI
  • Q15. Que from unix-
  • Q16. SDLC and different type of model and steps in different model
  • Ans. 

    SDLC refers to the process of software development. Different models include Waterfall, Agile, Spiral, and V-Model.

    • Waterfall model follows a linear sequential approach with distinct phases like planning, design, development, testing, and maintenance.

    • Agile model emphasizes on iterative and incremental development with continuous feedback and collaboration between cross-functional teams.

    • Spiral model combines the elements...

  • Answered by AI
  • Q17. Situation que – Client want his project in very small time span,then which SDLC model will u prefer…(i answered him PROTOTYPE model but this was wrong ,correct is RAD model,but try to explain any model u ...
  • Q18. Analytic que- Two trains start from equator and start running in different direction and they will never collide…so which train will have more wear n tear first…9use concept of rotation,relative motion an...
  • Ans. 

    Two trains starting from equator in opposite directions will not collide. Which train will have more wear and tear first?

    • The train moving towards the east will have more wear and tear due to the rotation of the earth

    • The train moving towards the west will have less wear and tear due to the rotation of the earth

    • Air resistance will also affect the wear and tear of the trains

    • The train moving towards the east will face more...

  • Answered by AI
  • Q19. Lateral thinking que- A man went to a bar and as he reached to bar-tender,bar-tender showed him a gun and that man left that bar…explain scenario. I had only two technical rounds but some of my frndz had ...
  • Q20. XSS attack
  • Q21. JSON
  • Q22. Digital Certificate
  • Q23. OOPs concept

Interview Preparation Tips

Round: Test
Experience: Assessment Composition:
1. Coding Skills: 2 Questions (One que is from DP(easy one like 0-1 knapsack) and other is array)
2. Programming: 10 Questions
3. Machine Learning Hadoop MCQ: 6 Questions
4. Networking MCQ: 6 Questions
5. Operating System: 6 Questions
6. Infrastructure: 6 Questions
7. Application Security: 6 Questions

Round: Technical Interview
Experience: Que from unix-        1-Mode switching        2-Single User system(i had no idea about this que,but i tried to explain it with pseudo terminal and we restrict its value to 1).        3-Find a pattern in a file(use grep).        4- cat command and how can we use it for input to a file (explain).

Round: HR Interview
Experience: Tell me about yourself. Tell something about school life (Prepare some fiction out of box story for this que). Why should we hire you.Where do you see yourself in next 5 yr. Any plan for Post-graduation(M.S)..(play diplomatically in this ans). One puzzle of 8 balls containing one defective ball and then some condition like u don’t know whether defective ball is light or heavy than others.That’s all about my experience.

General Tips: Prepare CRYPTOGRAPHY and try to ans as much as u can and in details, even if u dont have enough knowledge about that que…ALL THE BEST
College Name: NA

Skills evaluated in this interview

Get interview-ready with Top Visa Interview Questions

Software Engineer Interview Questions & Answers

user image Mohit Choudhary

posted on 9 Mar 2015

Interview Preparation Tips

Round: Test
Experience: Questions on
1. Programming: 10 Questions2. Machine Learning Hadoop MCQ: 6 Questions3. Networking MCQ: 6 Questions4. Operating System: 6 Questions5. Infrastructure: 6 Questions6. Application Security: 6 Questions
Tips: Questions were simple , except sections 2,5 unless you have a basic idea about it.
Duration: 75 minutes
Total Questions: 34+2

Round: Technical Interview
Experience: – Projects, Internship– Asymmetric and Symmetric encryption with some real world usage– Concepts behind Digital Signature and Digital Certificates– Detailed discussion on HTTPS– Basic OS concepts : Threads, Mutex , Semaphores– Basic OOPS concepts : Virtual functions , Function overloading and overriding , encapsulation.
Tips: Focus on Network Security concepts !

Round: Technical Interview
Experience: – Projects , Internship– Some discussion on Testing and how you would design a unit test case and a complete project test case. Discussion on Automated Testing.– How does a Web application work.– Software Development Models– Discussion on interpreted language and compiled language– Some DBMS basics for efficiency :- Indexing viz. B+trees , Hashing.– Some discussion on Apple Pay , VbV (Verified by Visa) (informal)

Round: HR Interview
Experience: Basic HR questions !

General Tips: Confidence is the key along with sufficient coding practice both on the IDE and pen-paper.
Skills: Network Security, Programming, Algorithms, Operating System
College Name: IIT ROORKEE

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)

Jobs at Visa

View all

Data Scientist Interview Questions & Answers

user image Pranjal Singh

posted on 14 Jan 2015

Interview Preparation Tips

Round: Test
Duration: 120 minutes
Total Questions: 42

Round: Test
Experience: There was a test for VISA which had following sections:
Assessment Composition:
1. Coding Skills: 2 Questions - Very simple problems - 30 marks total
2. Programming: 10 Questions - Simple Java Questions --Access modifiers, inline function, Red black tree, heap
3. Machine Learning Hadoop MCQ: 6 Questions You can't answer a single question if ML/BigData is remote-land for you.
4. Networking MCQ: 6 Questions - Again basics. Data layer questions. IP class basic question, fields in ethernet header.
5. Operating System: 6 Questions - Memory management mostly
6. Infrastructure: 6 Questions - Real life scenarios - server client questions.
7. Application Security: 6 Questions
Duration: 120 minutes
Total Questions: 42

Round: Interview
Experience: Questions from all CS subjects including coding
Tips: They shortlisted 29 students for the final interviews on Day 1 Slot 1.
There were 2 rounds of technical interview and 1 interview.

General Tips: Do’s
1)      Start right from August 
2)      Prepare basics of subjects
3)      Try to code using pen and paper
4)      Code as many problems as you can from all domains with only 1 language (C/C++/Java)
5)      Keep a friend with you at all times during interviews. If you are selected for more than 1 companies in 1 slot, ask your friend to manage your interview schedules given he knows your priorities. I was not in a position to attend more than 2 interviews in the same slot.
Don’ts
1)      Don’t lose hope if you are not shortlisted for your dream company or any company of your choice because being an IITian you have large number of better choices and which would fit in your profile better.
2)      Don’t argue with the interviewers and never pretend that your are over smart in a given domain.
3)      Do not take HR rounds lightly even if you are sitting for CS companies.
Skills: C++
College Name: IIT Kanpur
Motivation: Role of my interest

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

Visa Interview FAQs

How many rounds are there in Visa interview for freshers?
Visa interview process for freshers usually has 2-3 rounds. The most common rounds in the Visa interview process for freshers are Technical, Coding Test and Resume Shortlist.
How to prepare for Visa interview for freshers?
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 Agile Methodology, Coding, Data Warehousing, Db2 and Hart.
What are the top questions asked in Visa interview for freshers?

Some of the top questions asked at the Visa interview for freshers -

  1. Given 2 game scenarios for basketball, and given p as the probability of making...read more
  2. Analytic que- Two trains start from equator and start running in different dire...read more
  3. What is most interesting thing about Vi...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 for Freshers

based on 10 interviews in last 1 year

Interview experience

3.9
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Visa

People are getting interviews through

based on 14 Visa interviews
Campus Placement
Company Website
WalkIn
Referral
Job Portal
50%
14%
14%
14%
7%
1% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

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
 • 743 Interviews
American Express Interview Questions
4.2
 • 352 Interviews
PayPal Interview Questions
3.9
 • 203 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
MasterCard Interview Questions
4.0
 • 126 Interviews
Mobikwik Interview Questions
4.0
 • 44 Interviews
View all

Visa Reviews and Ratings

based on 338 reviews

3.6/5

Rating in categories

3.3

Skill development

3.7

Work-Life balance

3.7

Salary & Benefits

3.4

Job Security

3.4

Company culture

3.0

Promotions/Appraisal

3.2

Work Satisfaction

Explore 338 Reviews and Ratings
Technical Program Analyst

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Financial Analyst

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Staff Software Engineer

Bangalore / Bengaluru

7-10 Yrs

₹ 41.98-57 LPA

Explore more jobs
Senior Software Engineer
601 salaries
unlock blur

₹12.3 L/yr - ₹44 L/yr

Software Engineer
175 salaries
unlock blur

₹11 L/yr - ₹34.6 L/yr

Staff Software Engineer
140 salaries
unlock blur

₹24.8 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

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