Upload Button Icon Add office photos

Filter interviews by

NeenOpal Intelligent Solutions Interview Questions, Process, and Tips

Updated 8 Jan 2025

Top NeenOpal Intelligent Solutions Interview Questions and Answers

View all 8 questions

NeenOpal Intelligent Solutions Interview Experiences

Popular Designations

12 interviews found

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

(1 Question)

  • Q1. THey ask about your experience and projects youve worked on create table fact_product ( order_date varchar, order_id varchar, product_id varchar, quantity int, price int ); insert into fact_pr...

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Aug 2024

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. List vs tuple difference
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot be modified

    • List uses square brackets [], tuple uses parentheses ()

    • List is used for collections of items that may need to be changed, tuple is used for fixed collections

  • Answered by AI
  • Q2. How to removes duplicates in spark
  • Ans. 

    Use dropDuplicates() function in Spark to remove duplicates from a DataFrame.

    • Use dropDuplicates() function on the DataFrame to remove duplicates based on all columns

    • Specify columns to check for duplicates by passing them as arguments to dropDuplicates() function

    • Example: df.dropDuplicates() or df.dropDuplicates(['col1', 'col2'])

  • Answered by AI

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2024

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

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

Round 1 - Assignment 

Excel, Python, SQL and Power BI

Round 2 - Technical 

(3 Questions)

  • Q1. Remove duplicates from an array without using any functions
  • Ans. 

    Remove duplicates from an array without using any functions

    • Create an empty array to store unique values

    • Loop through the original array and check if the value is already in the unique array before adding it

    • Use nested loops to compare each element with all other elements in the array

  • Answered by AI
  • Q2. Create a single dimensional array from a multi dimensional array
  • Ans. 

    To create a single dimensional array from a multi dimensional array, use the flatten method in Python.

    • Use the flatten method in Python to convert a multi dimensional array into a single dimensional array.

    • Example: multi_array = [[1, 2], [3, 4], [5, 6]]

    • single_array = [item for sublist in multi_array for item in sublist]

  • Answered by AI
  • Q3. You have a 7 minutes hourglass and a 4 minutes hourglass, now figure out a way to calculate 9 minutes

Skills evaluated in this interview

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
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

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of Array Problem Statement Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-digit number. To achieve this, repea... read more
Add answer

NeenOpal Intelligent Solutions interview questions for popular designations

 Data Scientist

 (5)

 Data Analyst

 (3)

 Data Engineer

 (2)

 Data Analyst Intern

 (1)

 Senior Data Analyst

 (1)

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

(2 Questions)

  • Q1. Sql related Questions
  • Q2. Dax related Questions

Senior Data Analyst Interview Questions asked at other Companies

Q1. What is the difference between Least Squares Method and the maximum likelihood
View answer (1)
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

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

Jobs at NeenOpal Intelligent Solutions

View all

Data Analyst Interview Questions & Answers

user image tejesh goteti

posted on 25 Jun 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on Sand timer

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Mar 2024

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

It was based upon Tableau

Round 2 - One-on-one 

(1 Question)

  • Q1. They asked some python based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for python and advanced sql

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
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!

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Assignment 

1. The assignment inculded some questions that need to be answered through analysing a give set of data through SQL
2. Then there was an assignment to figure out multiple values from a given set of data by using SQL through Python. Related Jupyter notebook was to be shared.
3. This was an optional assignment of creating a dashboard for a given set of data using Tableau

Round 2 - HR 

(3 Questions)

  • Q1. HR round started with introduction followed by two above average level Puzzle Questions.
  • Q2. For technical part I was asked to write two SQL query to get asked data. I was asked questions regarding how the result would look like for different SQL queries
  • Q3. Then I was asked some multiple choice questions regarding Python related to different data types and some psuedo codes, followed by coding test to print the Fibonacci sequence.

Interview Preparation Tips

Topics to prepare for NeenOpal Intelligent Solutions Data Analyst Intern interview:
  • SQL
  • Python
  • NumPy
  • Pandas
  • Matplotlib
  • PyPlot
  • Power Bi
Interview preparation tips for other job seekers - Be confident with basics, have your fundamental clear don't expect very hard coding questions just go through common questions. Have good command on query writing. Having fundamentals clear was the most important thing for this role.

Data Analyst Intern Interview Questions asked at other Companies

Q1. PuzzleThere is an island with 100 prisoners, all of who have green eyes.All 100 prisoners are perfect logicians.They all want to escape the island.The condition of escaping the island is that one can deduce one’s own eye colour, and tell th... read more
View answer (1)

NeenOpal Intelligent Solutions Interview FAQs

How many rounds are there in NeenOpal Intelligent Solutions interview?
NeenOpal Intelligent Solutions interview process usually has 2 rounds. The most common rounds in the NeenOpal Intelligent Solutions interview process are Technical, Assignment and Resume Shortlist.
How to prepare for NeenOpal Intelligent Solutions 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 Python, SQL, Data Science, Salesforce and Apex.
What are the top questions asked in NeenOpal Intelligent Solutions interview?

Some of the top questions asked at the NeenOpal Intelligent Solutions 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. You have a 7 minutes hourglass and a 4 minutes hourglass, now figure out a way ...read more
How long is the NeenOpal Intelligent Solutions interview process?

The duration of NeenOpal Intelligent Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

NeenOpal Intelligent Solutions Interview Process

based on 12 interviews

Interview experience

3.2
  
Average
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 228 Interviews
Tiger Analytics Interview Questions
3.7
 • 220 Interviews
Fractal Analytics Interview Questions
4.0
 • 205 Interviews
Tredence Interview Questions
3.6
 • 122 Interviews
Axtria Interview Questions
3.0
 • 114 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

NeenOpal Intelligent Solutions Reviews and Ratings

based on 15 reviews

3.9/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.5

Salary

3.7

Job security

3.7

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 15 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.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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