Wells Fargo interview experience Real time questions & tips from candidates to crack your interview

Associate Professional

Wells Fargo
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
I am really happy with the people all over the comapany .It was really wonderful session throughout the interview journey and in which I answered properly and hence i got the offer via off campus .It was really very nice session over the interview as well as the test .
Application story
First I applied it via the First Naukri website and then i got shortlisted for written test .I got this opportunity via off campus and I answered very well in my interview and i was very truthful about my project explaination and don't try to copy paste your project if u haven't done it by your own.
Why selected/rejected for the role?
I got selected for the Program associate role because I gave my answer very well and the interviewer was very satisfied with all of my answers. Also if was not knowing the answer i told directly i don't know .
Preparation
Duration: 7 months
Topics: Data structure and algorithm (I preferred c++)operating systemdbmsoopscomputer networkweb development
Tip
Tip

Tip 1 : Be very clear with your project explanation and try to give example with the real life example .
Tip 2 : Also try to cover all the cs core subjects explanation clearly.

Application process
Where: Naukri
Eligibility: 6.5 cgpa and 65% 12th marks minimun requirement was needed
Resume Tip
Resume tip

Tip 1: Make it clean with appropriate knowledge and always provide the important links in your resume so that the interviewer can easily go through your achievements .
Tip 2: Provide true information and avoid telling lie in which You are not sure.

Interview rounds

01
Round
Medium
Video Call
Duration60 minutes
Interview date28 Apr 2022
Coding problem1

It was morning time and from 10:00 am . It happened via the google meet online process and it was very smooth onboarding . Interviewer was very friendly kind of nature .

1. Min Jumps

Easy
15m average time
85% success
0/40
Asked in companies
AckoHSBCIBM

You live in a Ninja town which is in the form of a N * M grid. In this town, people travel from one place to another by jumping over the buildings which are present in each cell of the grid. It is Christmas eve, and Santa wants to give gifts and chocolates to the kids who live in the building which is present at the cell (N - 1, M - 1). Initially, Santa is present on cell (0, 0). Since Santa is in a hurry, help him find a path from starting point to the endpoint with the least amount of time.

The Santa may go only from one building to any of its adjacent buildings which is present either to the right or to the bottom or bottom right cell i.e. if the current position is (x, y), he may go to (x + 1, y + 1) or (x + 1, y) or (x, y + 1) given that the new coordinates are in the grid. The time taken to reach from one building to another is equal to the absolute difference between the heights of buildings.

Note:

1. The heights of the buildings are positive.
2. Santa starts from the cell (0, 0) and he has to reach the building (N - 1, M - 1).
3. Santa cannot leave the grid at any point of time.
Problem approach

class Solution
{
public:
int minJumps(int arr[], int N)
{
// Base case: if the first element is 0 or if the destination is unreachable from the first element
if (N <= 1 || arr[0] == 0)
return -1;

int maxReach = arr[0], steps = arr[0], jumps = 1;

for (int i = 1; i < N; i++)
{
// If we have reached the end of the array
if (i == N - 1)
return jumps;

maxReach = max(maxReach, i + arr[i]);
steps--;

// If no steps left
if (steps == 0)
{
// If we can't reach further
if (i >= maxReach)
return -1;

// Increment jumps
jumps++;

// Update steps
if (i < maxReach)
steps = maxReach - i;
}
}

return -1;
}
};

Try solving now
02
Round
Medium
Video Call
Duration60 minutes
Interview date28 Apr 2022
Coding problem1

It was again the morning session and the interviewer was very supportive in nature and gave me the hint too to think the approach and finally i came up the solution which he was expecting.

1. Diagonal Sum

Easy
23m average time
75% success
0/40
Asked in companies
SamsungMicrosoftAmazon

Given a Binary Tree of 'N' nodes, find and print a list containing the sums of all the diagonals. When calculating the sum of each diagonal, consider the diagonals from right to left.

Diagonals of the binary tree are :

alt-text

There are three diagonals :

Diagonal 1 : 8 10 14

Diagonal 2 : 3 6 7 13

Diagonal 3 : 1 4

Example :

For the given binary tree : 

alt-text

Output : 24 14 2

Explanation: Rightmost diagonal contains elements {5, 10 , 9} its sum is 24, middle diagonal contains elements {6, 3, 5} its sum is 14, leftmost diagonal contains elements {2}. Thus the answer should be “24 14 2”.
Problem approach

vector diagonal(Node *root){

vector v;

queue q;

q.push(root);

while(!q.empty()){

int sum = 0;

int size = q.size();

for(int i = 0; i < size; i++){

Node *temp = q.front();

q.pop();

while(temp){

if(temp -> left)

q.push(temp -> left);

sum += temp -> data;

temp = temp -> right;

};

}

v.push_back(sum);

}

return v;

}

vector diagonalSum(Node* root) {

// Add your code here

vector ans;

if(!root)

return ans;

ans = diagonal(root);

return ans;

}

Try solving now
03
Round
Easy
Video Call
Duration30 minutes
Interview date11 May 2022
Coding problem1

It was late evening and happened in a very smooth way.

1. DBMS Question

What is meant by ACID properties in DBMS?
ACID stands for Atomicity, Consistency, Isolation, and Durability in a DBMS these are those properties that ensure a safe and secure way of sharing data among multiple users.

Atomicity: This property reflects the concept of either executing the whole query or executing nothing at all, which implies that if an update occurs in a database then that update should either be reflected in the whole database or should not be reflected at all.

Consistency: This property ensures that the data remains consistent before and after a transaction in a database.

Isolation: This property ensures that each transaction is occurring independently of the others. This implies that the state of an ongoing transaction doesn’t affect the state of another ongoing transaction.

Durability: This property ensures that the data is not lost in cases of a system failure or restart and is present in the same state as it was before the system failure or restart.

Problem approach

Tip 1: Try to give answer with the real life examples
Tip 2: Give answers in your own language and avoid the bookish language

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
SDE - Intern
4 rounds | 12 problems
Interviewed by Wells Fargo
2971 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 7 problems
Interviewed by Wells Fargo
1845 views
0 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 6 problems
Interviewed by Wells Fargo
912 views
0 comments
0 upvotes
company logo
Program Associate
3 rounds | 3 problems
Interviewed by Wells Fargo
927 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Professional
3 rounds | 3 problems
Interviewed by CIS - Cyber Infrastructure
529 views
0 comments
0 upvotes
company logo
Associate Professional
4 rounds | 6 problems
Interviewed by CIS - Cyber Infrastructure
0 views
0 comments
0 upvotes
company logo
Associate Professional
3 rounds | 9 problems
Interviewed by CIS - Cyber Infrastructure
502 views
0 comments
0 upvotes