Tip 1 : Be thorough with the java language
Tip 2 : While preparing for database, be thorough with the joins as those are the favourite questions of recruiter
Tip 3 : Projects are asked in detail in interview, be prepared for that
Tip 1 : Get your Resume checked by an employee from a reputed company
Tip 2 : Add keywords in the resume as per the job description
Interview with technical staff
Two tables will be given, and you will be asked to create an inner join and fetch specific data.
Difference between DDL and DML commands




As taught in the video, you just have to modify the code so that instead of printing numbers, it should output stars ('*').


1. A subsequence of string S is a string which we get after removal of zero or more characters from S, and without changing the order of character in the remaining string.
2. A subsequence S’ of string S, is known as Power Subsequence if S’ can be represented in the form ‘A’^i + ‘B’^j + ‘C’^k where i, j and k are strictly greater than 0, ie. S’ can be written as a concatenation of I ‘A’s, followed by j ‘B’s, followed by k ‘C’s.
3. Eg. “ABC” is a Power Subsequence with i=j=k=1, while “BAC” or “AB” or “BC” are not Power Subsequences.
4. Two subsequences are considered different if and only if the set of indexes of string S, chosen for two subsequences, are different.
It was a normal HR round to discuss salary and location
Are you comfortable doing night shifts when needed?
Which location do you prefer?
How much salary is expected?

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?