Tip 1 : Practice leetcode medium problems and also geeksforgeeks
Tip 2 : Have good knowledge of OOPS concept
Tip 3 : Good to know about Java
Tip 1 : Put your achievements like ranks in coding contest or leetcode rating
Tip 2 : Better to have Java as a skill and some good projects or internships.
Algorithm and Data Structures. MCQ based on dbms, html, css, js, sql, oops, program output.



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.



The order in which the groups and members of the groups are printed does not matter.
inputStr = {"eat","tea","tan","ate","nat","bat"}
Here {“tea”, “ate”,” eat”} and {“nat”, “tan”} are grouped as anagrams. Since there is no such string in “inputStr” which can be an anagram of “bat”, thus, “bat” will be the only member in its group.
Algorithm and Data Structures. Sql queries insert and update commands.



1. Not allowed to engage in more than 1 transaction at a time, which means if you have bought stock then you can buy another stock before selling the first stock.
2. If you bought a stock at ‘X’ price and sold it at ‘Y’ price then the profits ‘Y - X’.
It is not compulsory to perform an exact '2' transaction.



1. If there is no possible path to change BEGIN to END then just return -1.
2. All the words have the same length and contain only lowercase english alphabets.
3. The beginning word i.e. BEGIN will always be different from the end word i.e. END (BEGIN != END).
Some questions related to html and css. What are the various selector in css. SQL queries on how to use group by and having. Difference between truncate and delete.



The position of the robot can be negative.

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?