Tip 1 : Practice coding from Leetcode, Interview bit, at least 100 questions
Tip 2 : Practice any one automation framework includes design patterns
Tip 1 : Restrict your resume to 1 page and write your practical work only
Tip 2 : Mention top topics like Selenium, Rest Assured Automation, Language used Java etc


Input: ‘N’= 25, ‘s’ =”Take u forward is Awesome”
Output: 10 11 4



Consider the array {2,1,5,6,3,8} and 'K' = 3, the sorted array will be {8, 6, 5, 3, 2, 1}, and the 3rd largest element will be 5.
1) Kth largest element in an array is the kth element of the array when sorted in non-increasing order.
2) All the elements of the array are pairwise distinct.
Explain the different languages present in DBMS. (Learn)
DDL(Data Definition Language): It contains commands which are required to define the database.
E.g., CREATE, ALTER, DROP, TRUNCATE, RENAME, etc.
DML(Data Manipulation Language): It contains commands which are required to manipulate the data present in the database.
E.g., SELECT, UPDATE, INSERT, DELETE, etc.



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
Step 1 : Find the highest bar on the left and right, array traversal is needed which reduces the efficiency of the solution.
Step 2 : To make this efficient one must pre-compute the highest bar on the left and right of every bar in linear time.
Step 3 : Then use these pre-computed values to find the amount of water in every array element.
A 16 digits random number was given, I was asked to round off the number by 30
Tip 1 : Try to understand the problem clearly.
Tip 2 : Do ask questions to the interviewer to clear your doubts.
Tip 3 : Try giving the brute force solution first, then start optimizing.
Why should I hire you?
What are your strengths and weaknesses?
Why do you want to work at our company?
What is the difference between confidence and over confidence?
What is the difference between hard work and smart work?

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?