Upload Button Icon Add office photos

Visa

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Visa Information Security & Fraud Management Interview Questions and Answers

Updated 28 Aug 2016

Visa Information Security & Fraud Management Interview Experiences

1 interview found

I applied via Campus Placement

Interview Questionnaire 

7 Questions

  • Q1. Tell me about self
  • Ans. 

    I am a hardworking and dedicated individual with a passion for information security and fraud management.

    • Experienced in implementing and managing security measures to protect against cyber threats

    • Skilled in conducting risk assessments and developing mitigation strategies

    • Proficient in fraud detection and prevention techniques

    • Strong communication and collaboration skills

    • Continuous learner and always seeking to improve my

  • Answered by AI
  • Q2. Malloc vs calloc
  • Ans. 

    malloc and calloc are memory allocation functions in C programming language.

    • malloc() allocates memory block of given size and returns a pointer to the first byte of allocated memory.

    • calloc() allocates memory block of given size and initializes all bits to zero.

    • malloc() does not initialize the allocated memory, which may contain garbage values.

    • calloc() is slower than malloc() as it initializes all bits to zero.

    • malloc() ...

  • Answered by AI
  • Q3. Work of VISA
  • Ans. 

    VISA is a global payments technology company that enables secure and convenient electronic payments.

    • VISA provides payment solutions for consumers, businesses, and governments worldwide.

    • VISA's network processes billions of transactions every year.

    • VISA offers a range of products and services, including credit and debit cards, prepaid cards, and mobile payments.

    • VISA works with merchants, financial institutions, and other ...

  • Answered by AI
  • Q4. Cyber security related question
  • Q5. Few probability questions
  • Q6. One question on trees
  • Q7. One on DP

Interview Preparation Tips

Round: Test
Experience: 3 questions on hacker rank
1) something related to OOP. No option of using C or C++.
2)given string of numbers and k. k is number of elements taken continuously and find its minimum. Now of all the numbers for which minimum is found, find the maximum.
eg-k=3, array=1 4 2 3 3. So minimums are-1,2,2. Max of these is 2.
3) tree related question

Did not attempt 1st one. 12/13 cases passed in 2nd(run time error) and wrote something in 3rd(though none of the cases passed.

My friend had similar thing, but he was not selected for next round(probably because he did not write enough in 3rd question)
Tips: Don't just revise DS, try it by writing code as well
Don't lose hope even if you could not solve any question in which all the test cases were passed
Duration: 1h minute
Total Questions: 3

Round: Technical Interview
Experience: I never expected to make it through but I was shortlisted(7 shortlisted) for interview.
Telephonic interview-lasted for around 40min.

He went through my resume but didn't ask much questions from it

Skills:
Duration: 2-3
College Name: IIT Kanpur

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. Linked Lists and Stacks
  • Q2. Sorting algo. Basic Datastructures

Interview Preparation Tips

Round: Test
Experience: The test was fairly easy , but some questions required complete knowledge of the subject
Tips: Do some basic questions on C++ and Java programming like string operations etc.
Duration: 120 minutes
Total Questions: 20

Skills: Object Oriented Programming (OOP) Basics, Basic C/C++, Implementing Data Structures In C++, OOPS Using C++
Duration: 2.5
College Name: IIT Madras

I applied via Walk-in

Interview Questionnaire 

1 Question

  • Q1. About Yourself + Last Working Experience + Job Profile + Last Salary + Why You Left Your Previous Job+ Description of your favorite movie

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had made my resume own with the correct details, It was also attractive and key skills were highlighted.
Tips: Ignore the copy paste resume and make your resume by your own.

Round: Group Discussion
Experience: It was perfect.
Tips: Share more and more thoughts, what you knows about the topic. First listen carefully and then you should share your thoughts. Your voice should be in confidence and keep working on your rate of speech.
Duration: 15 mins. minutes

Round: Problem Statement
Experience: It's not very much tricky, but my answer was quite different but it was also correct.
My answer - window or door can't be open while plane is flying. then, how can pilot fall down from the plane.
Tips: First read the questions carefully, always answer hides in between the questions.

Round: HR Interview
Experience: It was perfect for me, Best performance ever. I had shared everything about my job profile and whatever they had asked me.
Tips: Eye Contact and body language should be there while communication.

General Tips: It's not very hard to work with a brand name, anyone and everyone can do it. Only knowledge matters. If you are going for the interview, Simply forgot everything what you have done in past. Concentrate only on that day, means you have to be positive at the moment. Company knowledge will help you more in that. So, first step is to collect more and more information about that organisation. Second thing, your confidence level should be high. Third step is to answer every questions with an eye contact and your body language. It will also help in it. And don't give extra ordinary answers.
Skill Tips: Need to be in confidence while facing the recruiter, should have an advance communication skills , Body language should be there.
Skills: Confidence level, eye contact, communication skills
College Name: Sharda University
Motivation: Wanted to working with the rising Brand. And also wanted to be a key member for this organisation in growth and success.

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was conducted in Hacker rank which consisted of 10 aptitude questions that included C, C++, Java MCQ. 2 programming questions were also given.

  • Q1. 

    Minimum Cost Path Problem Statement

    Given an N x M matrix filled with integers, determine the minimum sum obtainable from a path that starts at a specified cell (x, y) and ends at the top left corner of t...

  • Ans. 

    The problem involves finding the minimum sum path from a specified cell to the top left corner of a matrix.

    • Start from the specified cell and calculate the minimum sum path to reach the top left corner using dynamic programming.

    • Consider the three possible moves: down, right, and down-right diagonal.

    • Keep track of the minimum sum at each cell and update it based on the minimum of the three possible moves.

    • Finally, the mini...

  • Answered by AI
  • Q2. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use backtracking to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Recursively generate combinations by adding open parentheses if there are remaining, and closing parentheses if the number of open parentheses is greater than the number of clo...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Character Counting Challenge

    Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...

  • Ans. 

    Create a program to count lowercase alphabets, digits, and white spaces from user input until '$' is encountered.

    • Read characters from input stream until '$' is encountered

    • Count lowercase alphabets, digits, and white spaces separately

    • Print the counts of each character type as three integers separated by spaces

  • Answered by AI
  • Q2. 

    K Largest Elements Problem Statement

    Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.

    Input:

    The fir...
  • Ans. 

    Find K largest elements in an unsorted array and return them in non-decreasing order.

    • Sort the array in non-decreasing order.

    • Return the last K elements of the sorted array.

  • Answered by AI
  • Q3. How can you check whether you have an internet connection on your system?
  • Ans. 

    To check internet connection on a system, you can use various methods like pinging a website or checking network status.

    • Use ping command to check connectivity to a website (e.g. ping www.google.com)

    • Check network status using network settings or command line tools

    • Try accessing a website or online service to verify internet connection

  • Answered by AI
  • Q4. What happens when you type a URL in a web browser?
  • Ans. 

    When you type a URL in a web browser, the browser sends a request to the server hosting the website, which then responds with the necessary files to display the webpage.

    • Browser checks cache for DNS resolution

    • If not found, browser sends a DNS query to resolve the domain name to an IP address

    • Browser establishes a TCP connection with the server

    • Browser sends an HTTP request to the server for the webpage

    • Server processes the...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Counting Sort Problem Statement

    Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?

    Example:

    Input:
    ...
  • Ans. 

    Implement counting sort algorithm to sort an array of integers without comparisons.

    • Count the frequency of each element in the input array.

    • Calculate the prefix sum of frequencies to determine the position of each element in the sorted array.

    • Place each element in its correct position based on the prefix sum.

    • Time complexity of counting sort is O(n+k), where n is the number of elements and k is the range of input.

    • Example: ...

  • Answered by AI
  • Q2. What are the applications of the Fibonacci series in real life?
  • Ans. 

    The Fibonacci series has applications in various fields such as mathematics, computer science, art, and nature.

    • Used in algorithms for optimization problems and dynamic programming.

    • Found in nature, such as the arrangement of leaves on a stem, the branching of trees, and the spiral shapes of shells.

    • Applied in financial markets for predicting stock prices and analyzing market trends.

    • Utilized in art and design for creating

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round where the interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset with a particular sum exists

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the end of the iteration is true for the given K

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure to print the traversal sequence in the correct order.

    • Handle disconnected components by checking for unvisited nodes.

    • Follow the BFS approach of exploring neighbors before moving to the next level.

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

  • Q1. 

    Replace Spaces in a String

    Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

    Input:

    The first line contains an integ...
  • Ans. 

    Replace spaces in a string with '@40'.

    • Iterate through each character in the string

    • Replace spaces with '@40'

    • Return the modified string

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview Round with questions based on Data structures, OOPS and SQL.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI
  • Q2. Write an SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

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

    • Use the LIMIT and OFFSET clauses to skip the first n-1 highest salaries

    • Combine the above steps in a single query to find the nth highest salary

  • Answered by AI
  • Q3. Can you explain the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, and polymorphism.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows classes to inherit at...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Was asked me about my favorite technologies, What i liked about Facebook. And asked me to design a cinema ticket reservation web site­ like the one satyam has.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that are overridden in derived classes to achieve runtime polymorphism.

    • Virtual functions are declared in a base class with the 'virtual' keyword.

    • They are overridden in derived classes using the 'override' keyword.

    • They allow a function to be called based on the runtime type of an object.

    • Virtual functions enable dynamic binding and late binding in C++.

    • Example: virtual void ...

  • Answered by AI
  • Q3. Design a Cinema Ticket Reservation System.
  • Ans. 

    Design a Cinema Ticket Reservation System

    • Use a database to store movie information, showtimes, and seat availability

    • Allow users to search for movies, select showtimes, and choose seats

    • Implement a payment system for ticket purchases

    • Send confirmation emails with QR codes for ticket validation

  • Answered by AI
  • Q4. In how many attempts can you find a defective ball among 10 given balls using a two-pan balance scale?
  • Ans. 

    You can find a defective ball among 10 given balls in 2 attempts using a two-pan balance scale.

    • Divide the 10 balls into two groups of 5 each.

    • Weigh the two groups on the balance scale.

    • If one group is heavier, it contains the defective ball. If they are equal, the defective ball is in the remaining 5 balls.

    • Divide the group of 5 balls with the defective one into two groups of 2 and 3 balls.

    • Weigh the two groups on the bala...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

HR round that lasted for about 30 minutes. The interviewer asked me questions to know more about me and a puzzle.

  • Q1. Can you tell me about your projects and your extracurricular activities?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Intern Interview Questions & Answers

ICICI Bank user image Priyanka Bagree

posted on 3 May 2017

I was interviewed before May 2016.

Interview Questionnaire 

4 Questions

  • Q1. Tell us something which we can't find out from your CV.
  • Ans. 

    I am an avid rock climber and have scaled some of the tallest peaks in the region.

    • I have been rock climbing for over 5 years.

    • I have climbed peaks such as Mount Everest Base Camp and El Capitan in Yosemite.

    • Rock climbing has taught me valuable lessons in perseverance and problem-solving.

  • Answered by AI
  • Q2. Fall in the Chinese yuan
  • Ans. 

    The fall in the Chinese yuan is due to various factors such as trade tensions, economic slowdown, and government policies.

    • Trade tensions between China and the US have led to a decrease in demand for the yuan

    • China's economic growth has slowed down, leading to a decrease in investor confidence

    • The Chinese government has implemented policies to devalue the yuan in order to boost exports

    • The fall in the yuan has led to conce

  • Answered by AI
  • Q3. Ratios for banks
  • Ans. 

    Ratios are important for banks to measure their financial health and performance.

    • Common ratios used for banks include capital adequacy ratio, loan-to-deposit ratio, and net interest margin.

    • Capital adequacy ratio measures a bank's ability to absorb losses, while loan-to-deposit ratio shows the bank's ability to lend money.

    • Net interest margin measures the difference between interest earned on loans and interest paid on d...

  • Answered by AI
  • Q4. Why ICICI?
  • Ans. 

    ICICI is a leading financial institution known for its innovative products and services.

    • ICICI has a strong reputation in the financial industry

    • Offers a wide range of products and services for customers

    • Known for its innovative digital banking solutions

    • Provides opportunities for growth and development

  • Answered by AI

Interview Preparation Tips

Round: Test
Tips: The best way to clear this round is to be truthful. There are no correct answers which will also be told during this test. It is very easy, however, to understand if someone is lying on this test.
Duration: 40 minutes

Round: Group Discussion
Tips: Be confident.
Try and start the GD but make sure you can give it a direction.
Don't repeat points just to get more talking time.
Allow others to explain their point of view.
Duration: 10 minutes

Round: Technical + HR Interview
Tips: Don't get worked up or stressed if you don't know the answer to a question.
Prepare very well on the things mentioned in your CV.
Don't try to make up things.

College Name: IIM Raipur

I was interviewed before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

Interview Questionnaire 

7 Questions

  • Q1. Macroeconomic
  • Q2. HR questions
  • Q3. Why I chose MBA after 2 yr experience in IT and engineering background , they didn’t seem convinced
  • Q4. Explaination of Raghuram Rajan ‘s changes brought post fed taper announce in 2013
  • Q5. How to stabilise rupee
  • Ans. 

    Stabilising the rupee requires a combination of monetary and fiscal policies.

    • Increase interest rates to attract foreign investment

    • Reduce government spending to decrease fiscal deficit

    • Encourage exports to increase foreign currency inflow

    • Control inflation to maintain purchasing power of the rupee

    • Strengthen economic fundamentals to increase investor confidence

  • Answered by AI
  • Q6. Definition of NPA
  • Ans. 

    NPA stands for Non-Performing Asset, which refers to a loan or advance where interest or principal payments are overdue for a period of 90 days or more.

    • NPA is a loan or advance where payments are overdue for 90 days or more

    • It is also known as Non-Performing Loan (NPL)

    • Banks and financial institutions classify loans as NPA to reflect the risk of default

    • NPA can have a negative impact on the bank's profitability and credit...

  • Answered by AI
  • Q7. Explaining MSF,

Interview Preparation Tips

General Tips: Be up to date with the current affairs and definitions/values of CRR, repo rate etc. Macro economic brushup would be good.
Skills: Banking, Economics
College Name: NA

I applied via Campus Placement and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Group discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Contribute & help others!
anonymous
You can choose to be anonymous

Visa Interview FAQs

What are the top questions asked in Visa Information Security & Fraud Management interview?

Some of the top questions asked at the Visa Information Security & Fraud Management interview -

  1. malloc vs cal...read more
  2. work of V...read more
  3. Cyber security related quest...read more

Recently Viewed

INTERVIEWS

JPMorgan Chase & Co.

No Interviews

INTERVIEWS

Hindustan Aeronautics

No Interviews

SALARIES

GE

SALARIES

GE

COMPANY BENEFITS

GE

No Benefits

REVIEWS

GE

No Reviews

INTERVIEWS

ITC Hotels

No Interviews

INTERVIEWS

Techahead Software

No Interviews

INTERVIEWS

Tata Electronics

No Interviews

INTERVIEWS

Collins Aerospace

No Interviews

Tell us how to improve this page.

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.5k Interviews
Paytm Interview Questions
3.3
 • 749 Interviews
American Express Interview Questions
4.2
 • 358 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 182 Interviews
Fiserv Interview Questions
3.0
 • 172 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
View all
Senior Software Engineer
624 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
212 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Software Engineer
153 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Test Engineer
87 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Visa with

MasterCard

3.9
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent