Tip 1: Practice basic questions of coding like write a program for table of 5.
Tip 2: Practice SQL query questions.
Tip 3: Learn Excel from basic to advance.
Tip 1: Add at least 2 projects.
Tip 2: Don't put irrelevant information in the resume.
Tip 3: The resume should be clean and crisp.
What are the different types of joins in SQL? (Learn)
What is the difference between DELETE and TRUNCATE commands? (Learn)
What is the difference between DDL and DML commands? (Learn)
Imagine you are working as a data analyst at Paytm. Your task is to filter down the customer transaction data based on multiple boolean conditions. You need to find all transactions that were done during the month of March and April, for total transaction amounts greater than 500. Also, separate the transactions that were successful from the ones that failed.
Given the table EMPLOYEES(EMPID, NAME, DEPARTMENT, SALARY), write a SQL query to get the information for the employees with the top three highest salaries. (Practice)



You are given arr = [1, 3, 4, 5, 6, 9], and queries = [[1, 3], [5, 6] , [1, 6]].
For the first query [1, 3] sum of elements = 1 + 3 + 4 = 8. Hence the answer is 8
For the second query [5, 6] sum of elements = 6 + 9 = 15. Hence the answer is 15
For the third query [1, 6] sum of elements = 1 + 3 + 4 + 5 + 6 + 9= 28. Hence the answer is 28.
Hence the final answer is [8, 15, 28]
Use filter() Function to solve this question.
Filter() function allows us to filter elements from an iterable based on a condition. In this case, we will use filter() to get positive numbers in the range and then print them.
What will be the output of the following Python function?
min(max(False,-3,-4), 2,7)
a) -4
b) -3
c) 2
d) False
Ans:- D) false

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?