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 .



If a number has trailing zeros, then its reverse will not include them. For e.g., the reverse of 10400 will be 401 instead of 00401.
#include
int main()
{
//Initialization of variables where rev='reverse=0'
int number, rev = 0,store, left;
//input a numbers for user
printf("Enter the number\n");
scanf("%d", &number);
store= number;
//use this loop for check true condition
while (number > 0)
{
//left is for remider are left
left= number%10;
//for reverse of no.
rev = rev * 10 + left;
//number /= 10;
number=number/10;
}
//To show the user value
printf("Given number = %d\n",store);
//after reverse show numbers
printf("Its reverse is = %d\n", rev);
return 0;
}
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 .

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?