Tip 1 : practice more questions from hackerrank and leet code
Tip 2 : do your projects and patented will also work fine
Tip 3 : gain internship experiences
Tip 1 : have as many internship and work experience you can get in any company related technology.
Tip 2 : everything you are putting on resume, you should be able to explain everything.
12pm -12:30pm was the timing
online coding round was smooth, no bugs in there portal , questions were basically mcq and 2 coding question .



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.
#include
using namespace std;
vector rotate(int nums[], int n, int k) {
if (k > n)
k = k % n;
vector ans(n);
for (int i = 0; i < k; i++) {
ans[i] = nums[n - k + i];
}
int index = 0;
for (int i = k; i < n; i++) {
ans[i] = nums[index++];
}
return ans;
}
int main()
{
int Array[] = { 1, 2, 3, 4, 5 };
int N = sizeof(Array) / sizeof(Array[0]);
int K = 2;
vector ans = rotate(Array, N, K);
for (int i = 0; i < N; ++i) {
cout << ans[i] << ' ';
}
}
There were 10 people and every person will get a topic and then they have to prepare on it and present an extempore,
in last 5 mins a single question was given to everybody and then we have to state pros and cons.
topics like - in 15 years how India changed , how debit cards and upi have changed the life of rural areas, innovation vs invention , how covid-19 affected our life.
There were different timings for the applicants, secondly there were group of 5 company HR who was taking the interview of 10 applicants each .
timings were in the morning
HR mainly asks about extra curricular, hobbies, strength and weakness, performances , why we chose to apply in the company and what is the company's aim.
HR mainly asks about extra curricular, hobbies, strength and weakness, performances , why we chose to apply in the company and what is the company's aim.
Tip 1 : prepare early regarding the company's net worth, work, approach and work life balance.
Tip 2 : Know your strengths, weaknesses and what extra curricular you have done before.
Tip 3 : study the company's profile thoroughly and analyze why you chose this role .
This one is the technical round, in which they ask you more about the projects you have done in your entire career, they will ask you regarding latest current affairs in technology, like in my time blockchain and cryptocurrency was at peak in India so they asked me about that , difference between web 2 and web 3 . basics of c++ and data analytics .
basics of c++, basics of service now tools, basics of data analytics , basics of ms excel, technical current affairs
Tip 1: study 'Object-Oriented Programming with C++ by E balagurusamy' thoroughly.
Tip 2: keep up to date with all the current affairs in technology.
Tip 3: now the basics of excel as well as data analytics.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What can be the possible extension for the HTML5 file?