Visa Inc. Data Scientist Graduate interview questions
based on 1 rating - Updated Jun 4, 2025
Averageinterview difficulty
Very positiveinterview experience
How others got an interview
100%
Applied online
Applied online
Interview search
1 interviews
Visa Inc. interviews FAQs
Data Scientist Graduate applicants have rated the interview process at Visa Inc. with 3 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 100% positive. To compare, the company-average is 51.1% positive. This is according to Glassdoor user ratings.
Here are the most commonly searched roles for interview reports -
I just finished Visa Pre-Screen (General Coding Assessment), administered by CodeSignal.
A 70-minute home assignment of 4 questions in: Basic Coding, Implementation, Data Structures, and Problem Solving. I took it in Python, and the platform wasn't really comparable to work in, and there was no debugging option.
Interview questions [1]
Question 1
Create a function that simulates terminal cd (change directory) commands to determine the final path. It starts at the root (/) and processes each command in order:
"cd ": moves into the specified directory.
"cd ..": moves up one level (if not at root).
"cd .": does nothing (stay in the current directory).
"cd /": resets to root.