Tip 1 : Practice by coding not by watching.
Tip 2 : Consistent in Solving problems from platforms like leetcode and hackerrank.
Tip 3 : Build good projects.
Tip 1 : Be honest.
Tip 2 : Put all projects, internships and any extra skill you have.
afternoon time, online test with web cam and all security



A substring is a contiguous sequence of elements within a string (for example, “bcd” is a substring of “abcde” while “bce” is not).
A string is said to be palindrome if the reverse of the string is the same as the actual string. For example, “abba” is a palindrome, but “abbc” is not a palindrome.
Dynamic Programming
Evening time, Hirepro platform



For the given array [5, 8, 4, 9]
The sum of the elements of the array will be
5 + 8 + 4 + 9 = 26.
Since 26 is not a single-digit number, we will again take the sum of the digits of 26.
2 + 6 = 8.
Now 8 is a single-digit number. So we will stop here and return 8.

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?