Tip 1 : Be confident while talking to the interviewer.
Tip 2 : Do Leetcode and Gfg. Do top interview questions available on leetcode.
Tip 3 : Do atleast 2 coding questions everyday.
Tip 1 : Have at least one project in your resume. You should have the knowledge about the project.
Tip 2 : Write only those things which you know, in resume.
it was a coding test for 1.5 hours. there were two Questions of medium level.Fortunately , I solved both the questions.



For ‘N’ = 3,
All possible combinations are:
((()))
(()())
(())()
()(())
()()()



The height of the tower is calculated by adding the width of all the coins used in the formation of this tower.
Interviewer was very cool. he gave me enough time to think and solve the questions.



You are given billboards = [2, 8, 9, 10, 15], revenue = [20, 50, 10, 30, 5], ‘M’ = ‘20’, ‘X’ = 5, here we can place the billboard at positions 2, 8, 15, which will give the profit as 20 + 50 + 5 = 75. Hence the answer is 75.



You can use any string of A multiple times.
A =[“coding”, ”ninjas”, “is”, “awesome”] target = “codingninjas”
Ans = true as we use “coding” and “ninjas” to form “codingninjas”



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.




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?