Upload Button Icon Add office photos
Engaged Employer

i

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

ConveGenius Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ConveGenius Data Engineer Interview Questions and Answers

Updated 23 Aug 2024

ConveGenius Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image SHUBHAM KUMBHAR

posted on 23 Aug 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Scenario based question on Azure data Factory
  • Q2. SQL, Databricks questions they have asked

Data Engineer Jobs at ConveGenius

View all

Interview questions from similar companies

I applied via Referral and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Polyfills and Logical
  • Q2. List in react and the input box
  • Ans. 

    Answer on how to list in react and the input box

    • Use the map function to create a list in React

    • Use the state to store the input value

    • Use onChange event to update the state when the input value changes

    • Use onSubmit event to handle the form submission

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of JS and ReactJs for frontend interview, git, css, scss, html etc

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jan 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. Basic interview questions with project related questions
Round 3 - Technical 

(1 Question)

  • Q1. Detailed Questions on projects
Round 4 - HR 

(1 Question)

  • Q1. Normal HR interview questions with casual talks

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and positive. Keep all things ready related to your projects
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2022.

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 - HR 

(1 Question)

  • Q1. About previous experience and some basic questions.
Round 3 - Technical 

(1 Question)

  • Q1. About basic to advance level of Excel, power bi

Interview Preparation Tips

Interview preparation tips for other job seekers - If your knowledge and understanding is good and you know the tools then be confident and give your best.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Easy Lettcode questions multiple

Round 3 - One-on-one 

(1 Question)

  • Q1. Lld round with java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Create APIs for a Quiz platform
  • Ans. 

    Create APIs for a Quiz platform

    • Design RESTful APIs for creating, updating, deleting, and retrieving quizzes

    • Include endpoints for managing quiz questions, answers, and user responses

    • Implement authentication and authorization mechanisms for secure access

    • Utilize JSON format for data exchange between client and server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Spring boot development well

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Design and code a parking lot application

Round 2 - Technical 

(1 Question)

  • Q1. Past work and digging around that. few changes in past work and how to implement them.
Round 3 - Technical 

(1 Question)

  • Q1. How to ensure that there is no data corruption when data is being streamed and processed asynchronously
  • Ans. 

    To ensure no data corruption during asynchronous streaming and processing, use data validation, error handling, and checksums.

    • Implement data validation techniques to check the integrity of the streamed data.

    • Handle errors and exceptions properly to prevent data corruption.

    • Use checksums or hash functions to verify the integrity of the data.

    • Implement reliable communication protocols like TCP/IP to ensure data integrity.

    • Co...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your machine setup with IDE of your choice.
Keep a list of significant work you have done in the past. Keep all the details handy for them.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Longest substring without repetition

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare good design pattern and coding skills important
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About Binary search
Round 2 - Technical 

(1 Question)

  • Q1. About project and ER diagram

I applied via Recruitment Consulltant and was interviewed in Jul 2021. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Machine coding round design drivezy app. It should be demoable.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Add 2 linked list and return final linked list
  • Ans. 

    Add 2 linked lists and return final linked list

    • Create a new linked list to store the sum

    • Traverse both linked lists simultaneously and add the corresponding nodes

    • Handle carry over while adding nodes

    • If one linked list is longer than the other, add the remaining nodes to the sum list

  • Answered by AI
  • Q2. Find a Element in rotated sorted array
  • Ans. 

    Finding an element in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target element is in.

    • Perform binary search on that half of the array to find the target element.

    • Handle edge cases such as when the target element is at the pivot point.

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

(2 Questions)

  • Q1. Matrix chain multiplication
  • Q2. Find word in matrix.
  • Ans. 

    Given a matrix of characters and a word, find if the word exists in the matrix.

    • Traverse the matrix and check if the first letter of the word matches any cell.

    • If it does, check if the adjacent cells match the next letter of the word.

    • Repeat until the entire word is found or no match is found.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Stock buy sell problem to maximize profit.
  • Ans. 

    Algorithm to maximize profit by buying and selling stocks.

    • Iterate through the array of stock prices

    • Keep track of the minimum price seen so far

    • Calculate the profit if sold at current price

    • Update maximum profit seen so far

    • Return maximum profit

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Whitehat jr Software Engineer interview:
  • Ds
  • Algo
  • SQL
Interview preparation tips for other job seekers - Keep good command on DS ALGO. Try to approach the problem and discuss with interviewer.

Skills evaluated in this interview

ConveGenius Interview FAQs

How many rounds are there in ConveGenius Data Engineer interview?
ConveGenius interview process usually has 1 rounds. The most common rounds in the ConveGenius interview process are Technical.
How to prepare for ConveGenius 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 ConveGenius. The most common topics and skills that interviewers at ConveGenius expect are Cloud Computing, Data Engineering, Data Ingestion, Data Lake and Data Pipeline.
What are the top questions asked in ConveGenius Data Engineer interview?

Some of the top questions asked at the ConveGenius Data Engineer interview -

  1. Scenario based question on Azure data Fact...read more
  2. SQL, Databricks questions they have as...read more

Tell us how to improve this page.

ConveGenius Data Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
Planet Spark Interview Questions
3.7
 • 360 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
CARS24 Interview Questions
3.5
 • 333 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
Whitehat jr Interview Questions
3.4
 • 262 Interviews
ElasticRun Interview Questions
3.5
 • 250 Interviews
View all
Software Engineer
7 salaries
unlock blur

₹12 L/yr - ₹18 L/yr

Program Manager
7 salaries
unlock blur

₹8 L/yr - ₹11.2 L/yr

Data Analyst
7 salaries
unlock blur

₹5.5 L/yr - ₹9 L/yr

Associate Product Manager
6 salaries
unlock blur

₹9 L/yr - ₹11.5 L/yr

Manager
5 salaries
unlock blur

₹13.1 L/yr - ₹25 L/yr

Explore more salaries
Compare ConveGenius with

Udaan

4.0
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

Oyo Rooms

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