Upload Button Icon Add office photos

Filter interviews by

NeenOpal Intelligent Solutions Data Engineer Interview Questions and Answers

Updated 12 Feb 2025

NeenOpal Intelligent Solutions Data Engineer Interview Experiences

3 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Feb 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

20 Questions in 20 min

Round 2 - Coding Test 

Q1. To measure exactly 9 minutes using the 4-minute and 7-minute sand timers, follow these steps:

1. Start both the 4-minute and 7-minute timers at the same time.
2. When the 4-minute timer runs out, flip it immediately. At this point, 4 minutes have passed, and there are 3 minutes left on the 7-minute timer.
3. When the 7-minute timer runs out, 3 minutes have passed since you flipped the 4-minute timer, totaling 7 minutes. At this point, the 4-minute timer has been running for 3 minutes (1 minute left).
4. When the 4-minute timer runs out again (after 1 more minute), a total of 8 minutes has passed.
5. Finally, flip the 4-minute timer one last time. Wait for 1 more minute, which will give you a total of 9 minutes.

Q2. The SQL query provided will select all customers who do not have any orders. It retrieves customer IDs from the `Customers` table where the `customer_id` is not present in the `Orders` table.

Q3. The first SQL query retrieves the second oldest customer from the `Customers` table by selecting their `first_name` and `age`, ordering the results by age in descending order, and skipping the oldest customer with an offset of 1.

The second SQL query counts how many orders each customer has placed and selects customers who have placed more than one order, grouping the results by `customer_id` and including their `first_name`.

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

asked in Sigmoid
Q1. Next Greater Element Problem Statement You are given an array arr ... read more
asked in LTIMindtree
Q2. If you are given cards numbered 1-1000 and 4 boxes, where card 1 ... read more
asked in Cisco
Q3. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Sigmoid
Q4. Problem: Search In Rotated Sorted Array Given a sorted array that ... read more
asked in Sigmoid
Q5. K-th Element of Two Sorted Arrays You are provided with two sorte ... read more

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

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about NeenOpal Intelligent Solutions ?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project discussion, spark, python, sql, big data discussion
Round 2 - Behavioral interview 

(1 Question)

  • Q1. Project discussion and company profile alignment discussion
Round 3 - Case Study 

Data Modelling question and project discussion

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Assignment 

Assignment was based on figma

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

Sql questions database modelling

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

MCQ - OS,DBMS,C++,Python

Round 2 - Coding Test 

STRING, ROMAN TO INTEGER

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare well
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Easy to moderate general aptitude questions were asked

Round 2 - Coding Test 

Easy to moderate questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare aptitude topics well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Good very good have a nice day

Round 2 - One-on-one 

(2 Questions)

  • Q1. Very godo as well as very good
  • Q2. Very well manage the team as wells

Interview Preparation Tips

Interview preparation tips for other job seekers - dsfiasdfuasidfa aspdfaspod psdfasdpf pasdos dpf asdpfspfo[
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Create an iOS project with given details

Round 2 - Assignment Discussion 

(1 Question)

  • Q1. Discussion on the assignment that I submitted
Round 3 - System Design 

(1 Question)

  • Q1. Design Book Management System
  • Ans. 

    Design a Book Management System for organizing and tracking books.

    • Create a database to store book information such as title, author, genre, and availability status

    • Implement a user interface for users to search, borrow, return, and reserve books

    • Include features like notifications for due dates, book recommendations, and user reviews

  • Answered by AI

Skills evaluated in this interview

NeenOpal Intelligent Solutions Interview FAQs

How many rounds are there in NeenOpal Intelligent Solutions Data Engineer interview?
NeenOpal Intelligent Solutions interview process usually has 1-2 rounds. The most common rounds in the NeenOpal Intelligent Solutions interview process are Technical, Aptitude Test and Coding Test.
How to prepare for NeenOpal Intelligent Solutions Data Engineer 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 AWS, Azure, Data Processing, ETL and Export.
What are the top questions asked in NeenOpal Intelligent Solutions Data Engineer interview?

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

  1. how to removes duplicates in sp...read more
  2. List vs tuple differe...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2.7/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

Deltax Interview Questions
2.7
 • 88 Interviews
Wayfair Interview Questions
3.5
 • 60 Interviews
Tradeshala Interview Questions
4.5
 • 53 Interviews
KLA Interview Questions
3.8
 • 48 Interviews
Apptunix Interview Questions
4.2
 • 48 Interviews
Busibud Interview Questions
4.0
 • 42 Interviews
View all
NeenOpal Intelligent Solutions Data Engineer Salary
based on 7 salaries
₹8 L/yr - ₹12 L/yr
7% less than the average Data Engineer Salary in India
View more details
Data Scientist
31 salaries
unlock blur

₹4.2 L/yr - ₹11.7 L/yr

Data Analyst
18 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Data Engineer
7 salaries
unlock blur

₹8 L/yr - ₹12 L/yr

Machine Learning Engineer
6 salaries
unlock blur

₹5 L/yr - ₹5.4 L/yr

Senior Associate Consultant
6 salaries
unlock blur

₹14 L/yr - ₹18 L/yr

Explore more salaries
Compare NeenOpal Intelligent Solutions with

Amazon Sellers Services

3.9
Compare

Primus Global Technologies

3.9
Compare

GAMMON INDIA

3.7
Compare

Magneti Marelli Motherson Auto System

3.8
Compare
write
Share an Interview