Round 1 - coding exam
It was 3 parts - English, Finance and Coding parts
Round 2 - personal interview(technical)
It was about your general knowledge of algorithms, and how well your knowledge is in basic networking problems
Interview questions [1]
Question 1
Coin change problem execution, time and space complexity
I applied through college or university. I interviewed at Wells Fargo (Madras) in Sep 2020
Interview
First was an online round conducted on AMCAT which had technical,logical reasoning,English skills and aptitude and two coding questions. The second round was a one-one technical interview.
Third round was also a one-one technical interview.
After this there was a managerial round and then the HR round.
Third
Interview questions [1]
Question 1
1)Write a program to print the count of unique BSTs given 'n' nodes (0-n values in the nodes).
2)Difference between Java and C++
3)What happens when a url is typed in a browser? (Request flow)
4)What is semaphore?
5)What is trie?
I applied through college or university. The process took 3 days. I interviewed at Wells Fargo (Bombay) in Aug 2020
Interview
Round 1: First round was an online test on AMCAT platform. It had 3 sections:
English: 12 questions in 15 minutes. There were fill in the blanks, sentence completion, error
correction. Difficulty level: easy.
Business analysis: 14 questions in 25 minutes. Questions were based on interpretation from the
given graphs, stocks, shares.
Interview questions [1]
Question 1
i) Given an array with duplicate values, find the number of pairs that have a difference equal to
a given integer number. The array can contain duplicate values. The input consists of a number
‘N’ giving the size of the array and a number ‘D’ which gives the difference. The next line
consists of N space separated integers.
Input : 7 6
2 3 3 5 9 15 15
Output : 4
Explanation : The pairs are {3,9},{3,9},{9,15},{9,15} = 4