Tip 1 : Practice Atleast 250 Questions
Tip 2 : Practice Atleast 250 Questions
Tip 3 : Take time to study DSA
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
there were 3-4 questions in the Online Assessment round






1. Choose an element from the start or end of the array and the value of the element to your score.
2. Remove the element from the array you have chosen in step – 1.
Initially, you have a score of zero.



Initially, reverse the individual words of the given string one by one, for the above example, after reversing individual words the string should be “i ekil siht margorp yrev hcum”.
Reverse the whole string from start to end to get the desired output “much very program this like i” in the above example.
I was asked some theory questions from DSA , 2-3 coding problems , about my projects . Some typical DBMS questions



The string only consists of lowercase English alphabets.



For the given binary tree

The top view of the tree will be {10, 4, 2, 1, 3, 6}.
Here we use the two variables, one for vertical distance of current node from the root and another for the depth of the current node from the root. We use the vertical distance for indexing. If one node with the same vertical distance comes again, we check if depth of new node is lower or higher with respect to the current node with same vertical distance in the map. If depth of new node is lower, then we replace it.



A naive solution is to iterate through all numbers from 2 to sqrt(n) and for every number check if it divides n. If we find any number that divides, we return false.
Write an SQL query for finding the second-largest salary from the given table.
Difference between delete and truncate

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL clause is used to specify the conditions in a query?