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.
There were 50 MCQs based on Logical Reasoning, Quantitative Aptitude, Verbal Skills, Excel, Data Analysis, and Python.
How does the term "bootstrapping" contribute to statistical analysis?
A) By creating resampled datasets with replacement
B) By fitting multiple models to the same dataset
C) By testing the significance of correlations
D) By estimating the correlation matrix of a dataset
Ans:- A) By creating resampled datasets with replacement
What is the difference between precision and recall?
A) Both measure the same thing
B) Precision focuses on false positives, recall focuses on false negatives
C) Precision focuses on false negatives, recall focuses on false positives
D) Precision and recall are unrelated metrics
Ans:- B) Precision focuses on false positives, recall focuses on false negatives
What is the role of the learning_rate parameter in gradient descent optimization?
A) The speed at which the algorithm converges
B) The regularization strength applied to the model
C) The number of iterations in the optimization process
D) The size of the steps taken during each iteration
Ans:- D) The size of the steps taken during each iteration
How can you create a drop-down list in Excel?
A) Using the AutoFill feature
B) Applying conditional formatting
C) Using the Data Validation feature
D) Applying a filter to a column
Ans:- C) Using the Data Validation feature
What will be the output of this code:-
count = 1
def doThis():
global count
for i in (1, 2, 3):
count += 1
doThis()
print (count)
Ans:- 4



Given a sorted array arr[] and an integer target, the task is to find the number of occurrences of target in given array.
Since the array is already sorted, we can use binary search to find the occurrences of a given target. First, we find the index of the first occurrence (Lower Bound) of target and then the index of the first element greater than the target (Upper Bound). The difference between these two indices will give the total number of occurrences of the target
The interviewer was nice. He was on time and first he introduced himself and then asked my introduction. Then he asked questions from machine learning, projects and also gave a coding question to solve.



Given an array arr[] consisting of only 0s, 1s, and 2s. The task is to sort the array, i.e., put all 0s first, then all 1s and all 2s in last.
Traverse the array once and count number of 0s, 1s and 2s, say c0, c1 and c2 respectively. Now traverse the array again, put c0 (count of 0s) 0s first, then c1 1s and finally c2 2s. This solution works in O(n) time, but it is not stable and requires two traversals of the array.
Write a SQL query to print details of the Students whose first name ends with 'a'.
What is the difference between pandas Series and pandas DataFrames? (Learn)
What is a break, continue, and pass in Python? (Learn)

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