Tip 1: Practice Daily
Tip 2: Work on some Working Projects
Tip 3: Do atleast 2 projects
Tip 1: Good And working Projects with Links
Tip 2: The contents of the resume should be true.
Tip 3: Do not put false things on resume
The test include 3 medium level coding questions



A majority element is an element that occurs more than floor('N' / 2) times in the array.
The basic solution is to have two loops and keep track of the maximum count for all different elements. If the maximum count becomes greater than n/2 then break the loops and return the element having the maximum count. If the maximum count doesn’t become more than n/2 then the majority element doesn’t exist.



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
Declare and initialize an array.
Loop through the array in the reverse order that is, the loop will start from (length of the array - 1) and end at 0 by decreasing the value of i by 1.
Print the element arr[i] in each iteration.



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
The idea is to put all the opening brackets in the stack. Whenever you hit a closing bracket, search if the top of the stack is the opening bracket of the same nature. If this holds then pop the stack and continue the iteration, in the end if the stack is empty, it means all brackets are well-formed . Otherwise, they are not balanced.
You need to build a simplified version of a social networking website (like Twitter.com) with the following features :-
Product Features:
Signup
Login/Logout
Post a status update
Follow other users
View a feed of the status updates of the users you are following
Tip 1: Work on back-end first then front-end
Basic HR questions
tell me about your strengths and weakness
why Square Boat? Tell me something about this company
Will you be able to relocate?
Why Do you want to change the job?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?