Reserve Bank Information Technology Pvt Ltd interview experience Real time questions & tips from candidates to crack your interview

Associate Professional

Reserve Bank Information Technology Pvt Ltd
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
Research the company and the role you have applied for, and practice answering common interview questions. Be prepared to showcase your skills and experiences and ask questions about the company and the role. I have followed the same and making approaches to the HRS and be active on linkedin.
Application story
I have seen on linkedin & position is vacant so i have started approaching people, By luck or by my linkedin profile presence whatever we can say i got reply from assistant manager of company and he put referral for me
Why selected/rejected for the role?
yes I am able to clear this round because 90% skills are matched with what they have asked. After that confidence matters a lot. If you be in confidence you win half of the race.
Preparation
Duration: 3 months
Topics: OOPS, System Design, Algorithms, Dynamic Programming, Data Structures
Tip
Tip

Tip 1 : Practice As much you can 
Tip 2 : Never depend on One Logic & never try to remember code, ALways try to optimise your code
Tip 3 : Always prefer to develop project to showcase you skills

Application process
Where: Referral
Eligibility: 7
Resume Tip
Resume tip

Tip 1: Do no skip to write in which you have expertise
Tip 2: as Starting stage of career try to make CV of one page

Interview rounds

01
Round
Medium
Online Coding Interview
Duration45 minutes
Interview date28 Feb 2023
Coding problem2

This round was Coding + Face to Face interview round, It was around 45 minutes. There were only 1 person is sitting for taking interview.

1. Move Zeroes To End

Moderate
30m average time
70% success
0/80
Asked in companies
AmazonMicrosoftThought Works

Given an unsorted array of integers, you have to move the array elements in a way such that all the zeroes are transferred to the end, and all the non-zero elements are moved to the front. The non-zero elements must be ordered in their order of appearance.

For example, if the input array is: [0, 1, -2, 3, 4, 0, 5, -27, 9, 0], then the output array must be:

[1, -2, 3, 4, 5, -27, 9, 0, 0, 0].

Expected Complexity: Try doing it in O(n) time complexity and O(1) space complexity. Here, ‘n’ is the size of the array.

Problem approach

We're asked to traverse the array only once. We need to use two pointers/ variables to traverse the array. We have two options here:

Using two variables pointing from the beginning of the array
Using one variable pointing from the beginning and the other from the end.
Variables from both ends of the array:

Way to think:

We use two variables l and h storing the indexes of the array's first and last elements, respectively. We want to set 0's followed by 1's in the array. The elements traversed by l from the beginning should be 0's, and the elements from the end visited by h should be 1s. We need to swap the elements if l finds a 1 or h finds a 0.
int* segregation(int arr[], int n) 

int temp, l = 0; 
int h = n - 1; 
while(l < h) 

if(arr[l] == 0) 

l++; 

else if(arr[h] == 1) 

h--; 

else 

temp = arr[l]; 
arr[l] = arr[h]; 
arr[h] = temp; 


return arr; 
}
Both variables from the beginning of the array:

Way to think:

We want to arrange 0's followed by 1's in the array. We'll use two variables, both traversing from the beginning of the array. One variable is used to visit the elements and check the values, and the other is dedicated to staying at an index. The logic here is that whenever the visiting variable finds a 0, we should swap the elements at two variables.
nt* segregation(int arr[], int n) 

int i, j, temp; 
j = 0; 
for(i = 0; i < n; i++) 

if(arr[i] == 0) 

if(i != j) 

temp = arr[i]; 
arr[i] = arr[j]; 
arr[j] = temp; 
j++; 



return arr;

Try solving now

2. Maximum In Sliding Windows Of Size K

Moderate
20m average time
80% success
0/80
Asked in companies
AppleWalmartOYO

Given an array/list of integers of length ‘N’, there is a sliding window of size ‘K’ which moves from the beginning of the array, to the very end. You can only see the ‘K’ numbers in a particular window at a time. For each of the 'N'-'K'+1 different windows thus formed, you are supposed to return the maximum element in each of them, from the given array/list.

Try solving now
02
Round
Easy
HR Round
Duration20 mins
Interview date1 Mar 2023
Coding problem1

In HR Round there were two people one from managerial & Other Is HR.
One initial Ten minutes over Then HR came and started asking about my key skills , Confirming my position & Introduce me about company term & Policy , Asking me for relocation to delhi. 
This round was around 10 minutes. & Last question she asked why you want to switch company.

Overall there is no toxicity & pressure they first relaxed you then started asking about your expertise which you had mentioned

1. Basic HR Questions

He asked me about why i Want to join rebit, He askes me about my certification and told me about rebit which is subsidiaries of RBI.

Here's your problem of the day

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

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
907 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2581 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Professional
3 rounds | 3 problems
Interviewed by CIS - Cyber Infrastructure
515 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
490 views
0 comments
0 upvotes