Tip 1 : Try to be consistent not like you do 4 hr of coding in a day & then for next 2 days you do nothing, so be consistent.
Tip 2 : Always focus on basics and don't scared form new tech coming everyday because on the basics level all are same.
Tip 3 : Participate in Hackathon as much as possible it will boost your confidence.
Tip 1 : Resume has to short and crisp in a single page and try to show figure as proof if you done something worth it
Tip 2 : Never lie in your resume because later you got caught & then its not easy to turn back.
It's a 90 minutes test with a combination of about 15-20 aptitude questions and 5 coding questions both of medium level



Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].
create a sum var = 0
use for loop on array and iterate through each element and add to the sum
print sum
It's more of a aptitude, Problem Solving, and leadership skills checking round.
How many footballs has been sold in a year in India?
Tip 1: never answer a figure without reason
Tip 2: They don't want answer , they want to know your thought process behind your solution
Tip 3: Whatever steps you take to reach the answer explain the interviewer why behind that.

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?