Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Navi Technologies Team. If you also belong to the team, you can get access from here

Navi Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Navi Technologies Data Scientist 2 Interview Questions and Answers

Updated 8 Feb 2024

Navi Technologies Data Scientist 2 Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Assignment 

Credit risk default prediction

Round 2 - Case Study 

Assignment discussion and ML depth

Interview Preparation Tips

Topics to prepare for Navi Technologies Data Scientist 2 interview:
  • Machine Learning
  • Python
  • Credit Risk

Interview questions from similar companies

Data Analyst Interview Questions & Answers

PayPal user image AKASH KUMAR SINGH

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. For this round he gave me lot of problems and asked to develop optimal algorithm to solve that. Problems were mainly on trees and number sequences
  • Q2. In this round he mainly discussed my projects and asked me how these can be put to use in Paypal. He also asked some basic questions from ML
  • Q3. HR round was just for formality
  • Q4. Probability , question on calculating expected number of trials and puzzles

Interview Preparation Tips

Round: Test
Experience: The coding question was:
Given a binary string containing 0's and 1's. You can split the string such that each partition should be a exponential of 5 (1,5,25,625...). You were asked to return minimum number of partition for the given string such each partition is exponential of 5. If no such partition exists return -1.
Examples: '101101101' Ans: 3 (101, 101, 101)
'111' Ans: 3 (1,1,1)
10101 Ans: -1
Tips: For MCQ's prepare DSA, OS and Networking. For DSA you can refer to cormen
For Coding question practice on either geeksforgeeks or from any of the coding platforms like hackerrank
The shortlist was mainly dependent on coding question
Duration: 1 hour 30 minutes

Round: Puzzle Interview
Tips: Do lot of puzzles from heard on the street, -----/ , Try to search for more. It will be helpful in other interviews as well

Round: Technical Interview
Tips: Practice algorithm section from geeksforgeeks. There are lot of standard problems. The given questions were slightly modified version of standard problems

Round: Technical Interview
Tips: For this round you need to be well prepared with your projects and resume.

College Name: IIT Madras

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a data analyst with experience in analyzing and interpreting complex data sets to drive business insights.

    • Experienced in using statistical analysis tools such as Python, R, and SQL

    • Proficient in data visualization tools like Tableau and Power BI

    • Skilled in data cleaning, data mining, and data modeling techniques

    • Strong problem-solving and critical thinking skills

    • Effective communicator and team player

    • Example: I have w...

  • Answered by AI
  • Q2. Biggest hurdle you faced during the work you did t organise the tech fest of your college
  • Ans. 

    The biggest hurdle I faced during organizing the tech fest of my college was securing sponsorships.

    • Difficulty in convincing companies to sponsor the event

    • Limited budget for organizing a large-scale tech fest

    • Competition with other college events for sponsorships

    • Negotiating sponsorship deals and ensuring deliverables

    • Finding sponsors aligned with the theme and objectives of the tech fest

  • Answered by AI
  • Q3. Would you go for an MBA?
  • Ans. 

    Yes, pursuing an MBA can enhance my skills and open up new career opportunities.

    • An MBA can provide a strong foundation in business and management principles.

    • It can help develop analytical and problem-solving skills.

    • An MBA can broaden my network and provide access to valuable connections.

    • It can open up leadership roles and higher-level positions in organizations.

    • Having an MBA can increase earning potential and job prosp...

  • Answered by AI
  • Q4. Reliance fresh wants to open a store in north-eastern part of India. Should it or should it not?
  • Ans. 

    Yes, Reliance Fresh should open a store in the north-eastern part of India.

    • The north-eastern part of India has a growing population and increasing consumer demand.

    • Reliance Fresh can tap into the untapped market potential in the region.

    • Opening a store in the north-eastern part of India can help Reliance Fresh expand its presence and increase its market share.

    • Reliance Fresh can leverage its existing supply chain and dist...

  • Answered by AI
  • Q5. Guesstimate the number of people travelling by local metro in mumbai
  • Ans. 

    The number of people travelling by local metro in Mumbai is estimated to be in millions.

    • Mumbai has a population of over 20 million people.

    • The local metro is a popular mode of transportation in Mumbai.

    • During peak hours, the metro trains are usually crowded.

    • The metro network in Mumbai is extensive, covering various parts of the city.

    • The number of daily commuters on the metro can be estimated based on population density a

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: cpi above 7.0

Round: Test
Experience: Basic maths, shares related questions and english
Duration: 1 hour
Total Questions: 40

Round: Technical + HR Interview
Experience: Very easy round.

Skills: Aptitude, Communication, Quantitative Aptitude, Leadership Skills, Technical Skill
College Name: IIT Kanpur

Data Analyst Interview Questions & Answers

Visa user image Vishwesh Dayama

posted on 18 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. SQL Joins and remove duplicates
  • Q2. Function to create a transaction bin column
  • Ans. 

    Create a function to generate a transaction bin column based on transaction amounts.

    • Create bins based on transaction amounts (e.g. $0-$100, $101-$200, etc.)

    • Use pandas cut() function in Python to create bins

    • Assign bin labels to the transactions based on the bin ranges

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Implement lag() and lead() without using lag() or lead()
  • Ans. 

    Implement lag() and lead() functions without using lag() or lead()

    • To implement lag(), shift the values in the array by one position to the right

    • To implement lead(), shift the values in the array by one position to the left

    • For example, to implement lag() on [1, 2, 3, 4], you can shift the values to get [null, 1, 2, 3]

    • For lead(), you can shift the values to get [2, 3, 4, null]

  • Answered by AI
  • Q2. How will you go about optimising a query?
  • Ans. 

    Optimising a query involves identifying bottlenecks and improving efficiency.

    • Identify slow-performing queries using tools like query execution plans.

    • Optimize database indexes to speed up query performance.

    • Limit the number of columns and rows returned in the query.

    • Avoid using SELECT * and instead specify only the necessary columns.

    • Use appropriate data types and avoid unnecessary data conversions.

    • Consider denormalizing d...

  • Answered by AI
  • Q3. If the 3rd position in a string contains 'b' replace it with 'v'
  • Ans. 

    Replace 'b' with 'v' in the 3rd position of each string in an array

    • Iterate through each string in the array

    • Check if the 3rd position contains 'b'

    • If yes, replace 'b' with 'v'

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. How to handle model overfitting and model underfitting situations ? 2. In which situations should we standardize the data and where it is not required ? 3. How does Decision Trees work ? 4. How to selec...
  • Ans. 

    Answering common questions related to data science concepts and techniques.

    • To handle model overfitting, one can use techniques like cross-validation, regularization, and early stopping. For model underfitting, consider using more complex models or adding more features.

    • Standardizing data is important for algorithms like K-Nearest Neighbors and Support Vector Machines. It is not required for tree-based models like Decisi...

  • Answered by AI
  • Q2. 1. If you already have a lot of features and you also have categorical column what strategy will you use to encode the categorical column so that the overall feature count should not increase or should not...
  • Ans. 

    Use target encoding or frequency encoding to encode categorical columns without increasing feature count.

    • Use target encoding: Encode categorical column with the mean of the target variable for each category.

    • Use frequency encoding: Encode categorical column with the frequency of each category in the dataset.

    • Both methods preserve the information of the categorical column without increasing feature count.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. 1. What are the assumptions of Linear Regression ? 2. What is the formula for Euclidean distance in K-Means ? 3. How does SVM work ? 4. How does SVM work on non linearly separable data ?
  • Ans. 

    Answers to questions related to Linear Regression, K-Means, and SVM in data science.

    • Assumptions of Linear Regression include linearity, independence, homoscedasticity, and normality of errors.

    • Euclidean distance formula in K-Means is the square root of the sum of squared differences between two points.

    • SVM works by finding the hyperplane that best separates the classes in the feature space.

    • SVM on non-linearly separable d...

  • Answered by AI
  • Q2. What is the difference between Decision Trees and Random Forest. Why do we grow a lot of Decision Trees in a Random Forest ?
  • Ans. 

    Decision Trees are single trees while Random Forest is a collection of trees. Random Forest grows multiple trees to improve accuracy and reduce overfitting.

    • Decision Trees are individual trees that make decisions based on features of the data.

    • Random Forest is an ensemble method that combines multiple Decision Trees to improve accuracy and reduce overfitting.

    • Random Forest grows a lot of Decision Trees to increase diversi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First Technical Round was relatively easy but Second Technical round was definitively hard. The interviewer emphasized more on the know-how of the techniques to solve the problem, focusing on when and why to apply an algorithm and where not to apply the algorithm. He also emphasized whether the candidates understand the data before applying the algorithms. So prepare extremely well with solid hands on experience before going for Angel One interview.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SQL case study for data
  • Q2. Find nth salary
  • Ans. 

    To find the nth salary in a dataset

    • Sort the dataset in descending order based on salary

    • Remove duplicates if necessary

    • Return the salary at index n-1

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself and the current projects you are working on.
Round 2 - Technical 

(1 Question)

  • Q1. Sql Questions on regex, json , window functions were there.
Round 3 - Technical 

(1 Question)

  • Q1. Questions on current project, Tableau related question were there.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Aptitude Test 

It was a basic Aptitude test, Needed to learn Probability, Permutation , Cobination and SQL.
Total Duration 1 Hour.

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic questions about resume
Round 2 - One-on-one 

(2 Questions)

  • Q1. Workplace adjustment questions
  • Q2. Are you willing to work extra hours

Navi Technologies Interview FAQs

How many rounds are there in Navi Technologies Data Scientist 2 interview?
Navi Technologies interview process usually has 2 rounds. The most common rounds in the Navi Technologies interview process are Assignment and Case Study.

Tell us how to improve this page.

Navi Technologies Data Scientist 2 Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 307 Interviews
PayPal Interview Questions
3.9
 • 213 Interviews
HighRadius Interview Questions
2.8
 • 188 Interviews
Fiserv Interview Questions
3.0
 • 175 Interviews
Razorpay Interview Questions
3.6
 • 154 Interviews
KFintech Interview Questions
3.5
 • 141 Interviews
Visa Interview Questions
3.5
 • 141 Interviews
MasterCard Interview Questions
3.9
 • 140 Interviews
Angel One Interview Questions
4.0
 • 139 Interviews
View all
Navi Technologies Data Scientist 2 Salary
based on 4 salaries
₹32 L/yr - ₹39.9 L/yr
35% more than the average Data Scientist 2 Salary in India
View more details
Associate Manager
71 salaries
unlock blur

₹9.8 L/yr - ₹40 L/yr

Senior Executive
47 salaries
unlock blur

₹3.5 L/yr - ₹10.6 L/yr

Business Analyst
44 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Software Developer
35 salaries
unlock blur

₹14 L/yr - ₹46 L/yr

Team Lead
34 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Navi Technologies with

Fiserv

3.0
Compare

PhonePe

4.0
Compare

KFintech

3.5
Compare

Angel One

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview