Upload Button Icon Add office photos
Engaged Employer

i

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

NICE Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NICE Data Scientist Interview Questions and Answers

Updated 19 Sep 2024

NICE Data Scientist Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Feature selection Techniques
  • Ans. 

    Feature selection techniques are methods used to select the most relevant features for a predictive model.

    • Filter methods: Select features based on statistical measures like correlation, chi-squared, or mutual information.

    • Wrapper methods: Use a specific model to evaluate the importance of features by training and testing subsets of features.

    • Embedded methods: Features are selected as part of the model training process, l...

  • Answered by AI
  • Q2. Difference between Covariance and Correlation
  • Ans. 

    Covariance measures the relationship between two variables, while correlation measures the strength and direction of a relationship.

    • Covariance can be positive, negative, or zero, indicating the direction of the relationship.

    • Correlation is always between -1 and 1, with 1 indicating a perfect positive relationship, -1 indicating a perfect negative relationship, and 0 indicating no relationship.

    • Covariance is affected by t...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(3 Questions)

  • Q1. About projects and then questions related to ML and DL. Mostly focused on DL part
  • Q2. What is the difference between Adam optimizer and Gradient Descent Optimizer?
  • Ans. 

    Adam optimizer is an extension to the Gradient Descent optimizer with adaptive learning rates and momentum.

    • Adam optimizer combines the benefits of both AdaGrad and RMSProp optimizers.

    • Adam optimizer uses adaptive learning rates for each parameter.

    • Gradient Descent optimizer has a fixed learning rate for all parameters.

    • Adam optimizer includes momentum to speed up convergence.

    • Gradient Descent optimizer updates parameters b...

  • Answered by AI
  • Q3. When to use Relu and when not?
  • Ans. 

    Use ReLU for hidden layers in deep neural networks, avoid for output layers.

    • ReLU is commonly used in hidden layers to introduce non-linearity and speed up convergence.

    • Avoid using ReLU in output layers for regression tasks as it can lead to vanishing gradients.

    • Consider using Leaky ReLU or Sigmoid for output layers depending on the task.

    • ReLU is computationally efficient and helps in preventing the vanishing gradient prob...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Standard question from sql and python in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q2. Question based on joins and subquery
Round 3 - HR 

(2 Questions)

  • Q1. More question about project
  • Q2. What do you know about genAI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be honest

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic pandas questions on dataframes
  • Q2. Some quiz questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How can Logistic regression be applied for multiclasstext classification
  • Ans. 

    Logistic regression can be applied for multiclasstext classification by using one-vs-rest or softmax approach.

    • One-vs-rest approach: Train a binary logistic regression model for each class, treating it as the positive class and the rest as the negative class.

    • Softmax approach: Use the softmax function to transform the output of the logistic regression into probabilities for each class.

    • Evaluate the model using appropriate...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How does fbpropher forecasting model works and how is can be used to forecsst trafffic
  • Ans. 

    fbprophet is a forecasting model developed by Facebook that uses time series data to make predictions.

    • fbprophet is an open-source forecasting tool developed by Facebook's Core Data Science team.

    • It is based on an additive model where non-linear trends are fit with yearly, weekly, and daily seasonality, plus holiday effects.

    • fbprophet can be used to forecast traffic by providing historical data on traffic patterns and usi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thourough with maths of forecasting techniques and parameter tuning

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is tokenization in NLP? and, to get raw tokens for a sentence with words seperated by space, why use tokenizers from nltk instead of str.split()?
  • Ans. 

    Tokenization in NLP is the process of breaking down text into smaller units called tokens.

    • Tokenization is a fundamental step in NLP for text preprocessing.

    • Tokens can be words, phrases, or even individual characters.

    • Tokenization helps in preparing text data for further analysis or modeling.

    • NLTK tokenizers provide additional functionalities like handling contractions, punctuation, etc.

    • str.split() may not handle complex t...

  • Answered by AI
  • Q2. While tokenzing, if you want to not break some word pairs(or triplets), for ex, to not tokenize the words 'first' and 'name' when they occur together and consider them as a single token, how would you do i...
  • Q3. For a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do i...
  • Ans. 

    To find a line that best fits the data with 1000 samples and 700 dimensions, we can use linear regression.

    • For unsupervised ML approach, we can use Principal Component Analysis (PCA) to reduce dimensions and then fit a line using linear regression.

    • For supervised ML approach, we need to select a target column. We can choose any of the 700 dimensions as the target and treat it as a regression problem.

    • Potential problems of...

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. This round was entirely based on my projects on the resume!!!!
  • Q2. Explain project starting from the business problem to the deployment? [I was being interrupted for clarifications and questions]
  • Q3. [all of the follow up questions were baed on my answers] (some questions on businesss problem and rationale behing it, end users, how success will be measured and data collection that I can't disclose) a...

Interview Preparation Tips

Interview preparation tips for other job seekers - do not chase the HR, they just don't reply and your application will be forwarded, only when a candidate doesn't join or something like that. they had called me and told me that all the 3 rounds(2 technical + 1 manager) will completed in 3 days and didn't get back to me after the first round, in which the interviewer had explicitly told me that he has forwarded me to the next round and HR will get in touch with me for scheduling the 2nd technical round.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Gradient descent
  • Q2. Precision Recall
Round 2 - HR 

(2 Questions)

  • Q1. Where you see yourslef in next 5 year
  • Q2. Difficult situation which you face in ur last job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to the projects in the resume and some questions on machine learning concepts.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About the Projects I was working on and step by step detailing
  • Q2. Since it is NLP related projects mostly on Embeddings and word related questions
Round 2 - Assignment 

Its a take-home assignment related to NLP multi-class classification

Round 3 - Behavioral 

(2 Questions)

  • Q1. Again they discussed my insights on the projects
  • Q2. Some case studies and how we can solve it
Round 4 - HR 

(2 Questions)

  • Q1. Salary Negotiation
  • Q2. Accepting offer

NICE Interview FAQs

How many rounds are there in NICE Data Scientist interview?
NICE interview process usually has 1 rounds. The most common rounds in the NICE interview process are Technical.
How to prepare for NICE Data Scientist interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at NICE. The most common topics and skills that interviewers at NICE expect are Machine Learning, Python, Data Analysis, Natural Language Processing and Neural Networks.
What are the top questions asked in NICE Data Scientist interview?

Some of the top questions asked at the NICE Data Scientist interview -

  1. Difference between Covariance and Correlat...read more
  2. Explain Feature selection Techniq...read more

Tell us how to improve this page.

NICE Data Scientist Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
NICE Data Scientist Salary
based on 8 salaries
₹11 L/yr - ₹34 L/yr
44% more than the average Data Scientist Salary in India
View more details

NICE Data Scientist Reviews and Ratings

based on 3 reviews

2.2/5

Rating in categories

2.2

Skill development

1.8

Work-life balance

2.4

Salary

2.8

Job security

2.2

Company culture

2.1

Promotions

2.2

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
261 salaries
unlock blur

₹7 L/yr - ₹20.5 L/yr

Senior Software Engineer
170 salaries
unlock blur

₹11.4 L/yr - ₹31.5 L/yr

Technical Lead
167 salaries
unlock blur

₹8.2 L/yr - ₹35 L/yr

Software Engineering Specialist
130 salaries
unlock blur

₹19.1 L/yr - ₹44 L/yr

Software Engineer and Technical Lead
124 salaries
unlock blur

₹9 L/yr - ₹27.1 L/yr

Explore more salaries
Compare NICE with

Oracle

3.7
Compare

KPIT Technologies

3.4
Compare

Intellect Design Arena

3.9
Compare

Thomson Reuters

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