Tip 1: Have machine learning projects in resume
Tip 2: Better to have analyst experience in any company (internship or full-time)
Tip 3: Have advanced knowledge of SQL
Tip 1: Have machine learning projects in resume
Tip 2: Do not put false things in the resume
This round was conducted on the Hackerrank platform. It was 90 minutes long test. It had 2 SQL questions, 2 coding questions, and 8 MCQs on SQL, Python, and data structures.
To add a new element to a list we use which Python command?
Which of the following is the use of the id() function in Python?
Tip 1: Read the Python MCQs available on net
Tip 2: Study the question carefully
Query the names of all the cities in the CITY table that have FURNITURE as the main occupation.
Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession as a parenthetical.
Tip 1: Do practice SQL queries
Tip 2: Keep pen and paper by your side



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.
Step 1: Iterate through each character in the expression.
Step 2: If it encounters an opening bracket, it pushes it onto the stack.
Step 3: If it encounters a closing bracket, it checks whether the stack is empty or the top element of the stack does not correspond to the current closing bracket's matching opening bracket.
Step 4: If either of these conditions is true, it means the expression is unbalanced, and the function returns False. Otherwise, it continues checking the remaining characters.
Step 5: Finally, after the iteration, if the stack is empty, it means all the parentheses are balanced, and the function returns True; otherwise, it returns False.
In SQL, which command is used to SELECT only one copy of each set of duplicable rows?
Find all the cities with temperature, condition and humidity whose humidity is in the range of 63 to 79
Tip 1: Read SQL MCQs available on net
Tip 2: Study the question carefully
This round was conducted on Google Meet. I got a bit nervous during the interview and the interviewer made me calm during the interview. It was 30 minutes long.
What is the difference between the CHAR and VARCHAR2 datatype in SQL?
Tip 1: Study SQL in detail.
Tip 2: Answer confidently

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?