Upload Button Icon Add office photos

Filter interviews by

NeenOpal Intelligent Solutions Data Scientist Interview Questions and Answers

Updated 11 Jul 2024

NeenOpal Intelligent Solutions Data Scientist Interview Experiences

5 interviews found

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

I applied via campus placement at Indian Statistical Institute (ISI), Kolkatta and was interviewed in Jul 2023. 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 - Coding Test 

Two tasks, one python and one SQL based

Round 3 - Technical 

(4 Questions)

  • Q1. Q1.) Given sample data in text, read it in python Solution: Take the text to notepad, save it as CSV and then read it in python Check the number of null values Check the number of unique values Make a new...
  • Ans. 

    Read sample data in text, check for null and unique values, create new column by multiplying two features

    • Save text data as CSV and read in Python using pandas

    • Use isnull() to check for null values

    • Use nunique() to check for unique values

    • Create a new column by multiplying two existing columns

    • Add the new column to the existing dataframe

  • Answered by AI
  • Q2. Q3.) Query the minimum & maximum marks from the student table. Will the output be in the form of columns or rows. What to do in order to get the output in rows?
  • Q3. Q2.) Difference between list and tuple? a = [1,2,3,4,5,6,7,8,9] print(a[-1:-5]) Without running this code in compiler, tell the output
  • Ans. 

    The code will output an empty list as a result of slicing from -1 to -5 in the list 'a'.

    • Slicing in Python allows you to access a subset of elements in a list or tuple.

    • When slicing, the start index is inclusive and the end index is exclusive.

    • In this case, a[-1:-5] will result in an empty list because the start index -1 is greater than the end index -5.

  • Answered by AI
  • Q4. Q4.) Fibonacci series in python
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Use a loop or recursion to generate Fibonacci series in Python.

    • Start with 0 and 1 as the first two numbers in the series.

    • Add the previous two numbers to get the next number in the series.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NeenOpal Intelligent Solutions Data Scientist interview:
  • Python
  • MySQL
  • Puzzles
  • Loogical reasoning
Interview preparation tips for other job seekers - Half hour technical interview

Skills evaluated in this interview

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

SQL, Pandas, Power BI

Round 2 - Technical 

(1 Question)

  • Q1. SQL and Pandas questions
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

The assignment consisted of three sections where the third section is optional and it only need some basic knowledge of SQL and python

Round 3 - Technical 

(1 Question)

  • Q1. Here the HR will ask you some questions related to python, SQL, and aptitude (just some basic questions)
Round 4 - Behavioral 

(1 Question)

  • Q1. More of a discussion of your previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - My interviewer wanted the answers to be in his way which is not possible because everyone will have a different approach to different problems. I had a pathetic experience with the interviewer!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. About project About experience Basic sql questions Puzzles Remove duplicates coding question Pandas data cleaning using groupby merge and some basics

NeenOpal Intelligent Solutions interview questions for designations

 Senior Data Analyst

 (1)

 Data Analyst Intern

 (1)

 Data Analyst

 (3)

 Data Engineer

 (1)

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

I was interviewed before Oct 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Case Study 

Design Recommendation Engine

Round 3 - One-on-one 

(2 Questions)

  • Q1. SQL question medium
  • Q2. ML question concepts

Interview questions from similar companies

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

Python coding test on DSA

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Contained 3 coding question and 10 mcq on stats, ML and SQL, They asked to complete in 1hr to get shortlisted for next round. Then next round didn't happen

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

I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What projects you have done walk through
  • Q2. Explain self join

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL python and machine learning concept thoroughly
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via LinkedIn

Round 1 - Coding Test 

Hackerrank statistics and dsa

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Coding problem with python and sql join queries

Interview Preparation Tips

Interview preparation tips for other job seekers - practice coding problems python sql and basics of ML

NeenOpal Intelligent Solutions Interview FAQs

How many rounds are there in NeenOpal Intelligent Solutions Data Scientist interview?
NeenOpal Intelligent Solutions interview process usually has 2-3 rounds. The most common rounds in the NeenOpal Intelligent Solutions interview process are Technical, Resume Shortlist and Assignment.
How to prepare for NeenOpal Intelligent Solutions 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 NeenOpal Intelligent Solutions . The most common topics and skills that interviewers at NeenOpal Intelligent Solutions expect are Data Science, Machine Learning, Python, SQL and Neural Networks.
What are the top questions asked in NeenOpal Intelligent Solutions Data Scientist interview?

Some of the top questions asked at the NeenOpal Intelligent Solutions Data Scientist interview -

  1. Q2.) Difference between list and tuple? a = [1,2,3,4,5,6,7,8,9] print(a[-1:-5])...read more
  2. Q1.) Given sample data in text, read it in python Solution: Take the text to no...read more
  3. Q4.) Fibonacci series in pyt...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 NeenOpal Intelligent Solutions interviews
Campus Placement
Referral
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
NeenOpal Intelligent Solutions Data Scientist Salary
based on 32 salaries
₹4.2 L/yr - ₹11.7 L/yr
39% less than the average Data Scientist Salary in India
View more details

NeenOpal Intelligent Solutions Data Scientist Reviews and Ratings

based on 4 reviews

3.1/5

Rating in categories

3.3

Skill development

2.8

Work-Life balance

2.9

Salary & Benefits

3.3

Job Security

2.9

Company culture

3.1

Promotions/Appraisal

3.1

Work Satisfaction

Explore 4 Reviews and Ratings
Data Scientist
32 salaries
unlock blur

₹4.2 L/yr - ₹11.7 L/yr

Data Analyst
16 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Business Analyst
8 salaries
unlock blur

₹7.2 L/yr - ₹10.8 L/yr

Senior Associate Consultant
8 salaries
unlock blur

₹14 L/yr - ₹15 L/yr

Machine Learning Engineer
6 salaries
unlock blur

₹5 L/yr - ₹5.4 L/yr

Explore more salaries
Compare NeenOpal Intelligent Solutions with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

Tiger Analytics

3.6
Compare

LatentView Analytics

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview