Upload Button Icon Add office photos
Engaged Employer

i

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

Sun Dew Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sun Dew Solutions Data Engineer Interview Questions and Answers

Updated 26 Mar 2024

Sun Dew Solutions Data Engineer Interview Experiences

2 interviews found

Data Engineer Interview Questions & Answers

user image Prasenjit Karmakar

posted on 26 Mar 2024

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

(1 Question)

  • Q1. Python SQL Power BI

Data Engineer Interview Questions & Answers

user image Prasenjit Karmakar

posted on 5 Jul 2023

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

I applied via Hirect and was interviewed before Jul 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked SQL basic to advance level concept.
Round 3 - Coding Test 

1-hour test with 15 questions on Python or SQL.

Round 4 - HR 

(1 Question)

  • Q1. Basic Hr Question. But they judge the psychology of the candidate.

Interview Preparation Tips

Interview preparation tips for other job seekers - The basic concept should be clear.

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 Cisco
Q2. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Sigmoid
Q3. Problem: Search In Rotated Sorted Array Given a sorted array that ... read more
asked in Cisco
Q4. Covid Vaccination Distribution Problem As the Government ramps up ... read more
asked in LTIMindtree
Q5. 1) If you are given a card with 1-1000 numbers and there are 4 bo ... read more

Data Engineer Jobs at Sun Dew Solutions

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 5 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 

Duration is around 1 hour

Round 3 - Technical 

(1 Question)

  • Q1. 1. Basic programming concepts 2. OOP concepts and basic problem solving skills
Round 4 - Technical 

(1 Question)

  • Q1. Programming question
Round 5 - HR 

(1 Question)

  • Q1. 1. Basic questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Second largest number in an array
  • Ans. 

    Find the second largest number in an array of strings.

    • Convert the strings to numbers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
  • Q2. Pairs with given sum
  • Ans. 

    Find pairs in an array that sum up to a given target value.

    • Use a hash set to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hash set.

    • Return the pairs that sum up to the target value.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS based questions
  • Q2. Basic language based questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Tell me about projects you have worked upon
  • Q2. PEP-8 standards
Round 2 - Technical 

(2 Questions)

  • Q1. Architecture of project on which you were working
  • Q2. Pandas and Numpy
Round 3 - HR 

(2 Questions)

  • Q1. Tell me your Current CTC
  • Q2. Tell me your Expected CTC

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are Joins in SQL? Briefly explain difference between all types of joins
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables, with NULL values for non-matching rows

    • Cross join retur

  • Answered by AI
  • Q2. Find a sub array with a given sum
  • Ans. 

    Given an array of integers, find a contiguous subarray with a given sum.

    • Use a sliding window approach to iterate through the array and keep track of the current sum.

    • If the current sum exceeds the given sum, move the window's left endpoint forward.

    • If the current sum is less than the given sum, move the window's right endpoint forward.

    • If the current sum equals the given sum, return the subarray.

    • Time complexity: O(n), Spa

  • Answered by AI
  • Q3. Questions related to Projects mentioned in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice would be to remain honest throughout the interview. The interviewer checks the problem solving abilities by your approach of solving it. Ask if there are any doubts.

Skills evaluated in this interview

Sun Dew Solutions Interview FAQs

How many rounds are there in Sun Dew Solutions Data Engineer interview?
Sun Dew Solutions interview process usually has 2-3 rounds. The most common rounds in the Sun Dew Solutions interview process are One-on-one Round, Resume Shortlist and Coding Test.
How to prepare for Sun Dew 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 Sun Dew Solutions. The most common topics and skills that interviewers at Sun Dew Solutions expect are Python, Artificial Intelligence, Azure, Machine Learning and Natural Language Processing.
What are the top questions asked in Sun Dew Solutions Data Engineer interview?

Some of the top questions asked at the Sun Dew Solutions Data Engineer interview -

  1. Basic Hr Question. But they judge the psychology of the candida...read more
  2. Asked SQL basic to advance level conce...read more
  3. Python SQL Power...read more

Tell us how to improve this page.

Sun Dew Solutions Data Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.9
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
View all
Sun Dew Solutions Data Engineer Salary
based on 5 salaries
₹4.8 L/yr - ₹6 L/yr
49% less than the average Data Engineer Salary in India
View more details

Sun Dew Solutions Data Engineer Reviews and Ratings

based on 3 reviews

4.2/5

Rating in categories

4.6

Skill development

4.2

Work-life balance

3.8

Salary

4.2

Job security

4.2

Company culture

4.6

Promotions

4.6

Work satisfaction

Explore 3 Reviews and Ratings
Data Engineer

Kolkata

3-5 Yrs

Not Disclosed

Data Engineer (RPA & AI/ML Expertise)

Kolkata

2-6 Yrs

Not Disclosed

Explore more jobs
Technical Associate
17 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Junior Technical Associate
9 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Quality Analyst
7 salaries
unlock blur

₹4 L/yr - ₹7.6 L/yr

Presales Consultant
6 salaries
unlock blur

₹4.8 L/yr - ₹6.4 L/yr

Data Engineer
5 salaries
unlock blur

₹4.8 L/yr - ₹6 L/yr

Explore more salaries
Compare Sun Dew Solutions with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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