Upload Button Icon Add office photos
Engaged Employer

i

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

InFynd Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

InFynd Data Engineer Interview Questions and Answers

Updated 20 Jul 2024

InFynd Data Engineer Interview Experiences

3 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Jul 2024

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 Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They ask easy aptitude questions

Round 2 - Assignment 

They ask SQL basic questions

Round 3 - HR 

(2 Questions)

  • Q1. Self intro and they ask about projects
  • Q2. Technical questions based on thier projects

Interview Preparation Tips

Topics to prepare for InFynd Data Engineer interview:
  • python
  • java
  • c++
Interview preparation tips for other job seekers - learn the language u know well

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2024

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

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its related to trains problem ,and boat problems etc.. I can' t crack the round

Round 2 - Coding Test 

I didn't attend the round

Interview Preparation Tips

Topics to prepare for InFynd Data Engineer interview:
  • Python
  • Postgresql
Interview preparation tips for other job seekers - Nothing to say

Data Engineer Interview Questions Asked at Other Companies

asked in Cisco
Q1. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Sigmoid
Q2. Next Greater Element Problem Statement You are given an array arr ... 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 Sigmoid
Q5. K-th Element of Two Sorted Arrays You are provided with two sorte ... read more

Data Engineer Interview Questions & Answers

user image Deva Dharshini

posted on 11 Jan 2024

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

Questions was easy to medium level

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions on MySQL using group by and joins
  • Q2. Aptitude questions
Round 3 - HR 

(1 Question)

  • Q1. What are your hobbies

Interview questions from similar companies

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

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
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 Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find in rotated sorted array
  • Ans. 

    Search for a target value 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 value lies in based on the pivot point.

    • Continue binary search in the appropriate half of the array to find the target value.

  • Answered by AI
  • Q2. Design IMDB. how will you manage concurrent ratings
  • Ans. 

    Design IMDB with concurrent ratings management

    • Implement a locking mechanism to ensure only one user can update a rating at a time

    • Use a queue system to handle multiple rating requests in an orderly manner

    • Consider using distributed systems to handle high concurrency levels

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design vehicle rental system. Api design
  • Ans. 

    Design a vehicle rental system API

    • Create endpoints for listing available vehicles, booking a vehicle, and returning a vehicle

    • Include authentication and authorization mechanisms for users and admins

    • Implement payment gateway integration for processing rental payments

    • Include features like vehicle search, filtering, and reviews/ratings

    • Consider scalability and performance optimizations for handling high traffic

  • Answered by AI

Skills evaluated in this interview

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

3 dsa questions were asked

Round 2 - HR 

(5 Questions)

  • Q1. Dsa questinsxare asked
  • Q2. Coding in live anlong project explanation
  • Ans. 

    Coding in live project involves writing and implementing code in a real-world software development project.

    • Understand the project requirements and scope before writing any code.

    • Collaborate with team members to ensure code integration and compatibility.

    • Test and debug code to ensure it meets project specifications.

    • Document code changes and updates for future reference.

    • Follow coding best practices and guidelines to mainta...

  • Answered by AI
  • Q3. Nothing is asked in my 3rd question
  • Q4. What does the following C++ code snippet do? int x = 5; while (x > 0) { cout << x << " "; x--; } Results in a compilation error Prints "54321" Prints "545454" Prints "12345"
  • Ans. 

    Prints numbers from 5 to 1 separated by a space

    • The code initializes x to 5, then enters a while loop that prints the value of x and decrements it until x is no longer greater than 0

    • The output will be '54321'

  • Answered by AI
  • Q5. What will be the value printed to the console? #include void function(int arr[], int size) { for (int 10; 1 size; 1++) { arr[1] = 2; } int main() { int arr[] {1, 2, 3, 4, 5); function(arr, 5);...
  • Ans. 

    The value printed to the console will be 246810.

    • The function modifies the array elements to be 2.

    • The main function calls the function to modify the array.

    • The loop in main function prints the modified array elements.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic Js concepts like debouncing,event loop, and other output-based questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Js concepts in depth
Round 3 - HR 

(2 Questions)

  • Q1. Hiring manager round, questions around my project
  • Q2. Optimization techniques
  • Ans. 

    Optimization techniques are methods used to improve the efficiency and performance of software applications.

    • Use algorithms like greedy, dynamic programming, or divide and conquer to optimize code

    • Minimize time complexity by avoiding nested loops and unnecessary iterations

    • Utilize data structures like hash tables, arrays, and trees for efficient storage and retrieval

    • Profile code to identify bottlenecks and optimize critic...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basics, interviewers were very helpful
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at PSG College of Arts & Science, Coimbatore and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are Question based on data strcuture ,they cover all the topic in ds

Round 2 - Coding Test 

In coding code they gave internet access to solve the problem after 30 they told us to make some changes in it and we should ready to explain the entire code

Interview Preparation Tips

Interview preparation tips for other job seekers - To clear 1 st round ,revise all the data structure concepts ,in second round make sure to be strong in fundamentals of programming and good in logical thinking
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

3 DSA questions on array and strings 1 easy, 2 medium level

Round 2 - Assignment 

Create django backend project for book store

Round 3 - HR 

(1 Question)

  • Q1. Behaviour and Situations questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. There wer four questions 1) wildcard pattern matching(leetcode) 2) cows and buffaloes(leetcode) 3) unix based cd directory 4) backtracking question
  • Q2. It was a resume based round for 45 min
Round 2 - Technical 

(1 Question)

  • Q1. It was a resume based round for 1 hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode medium to hard questions
Know your resume very well

InFynd Interview FAQs

How many rounds are there in InFynd Data Engineer interview?
InFynd interview process usually has 2-3 rounds. The most common rounds in the InFynd interview process are Aptitude Test, HR and One-on-one Round.
How to prepare for InFynd 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 InFynd. The most common topics and skills that interviewers at InFynd expect are IT Services, MySQL, Oracle, Postgresql and SAN.
What are the top questions asked in InFynd Data Engineer interview?

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

  1. technical questions based on thier proje...read more
  2. Questions on MySQL using group by and jo...read more
  3. Aptitude questi...read more

Tell us how to improve this page.

InFynd Data Engineer Interview Process

based on 3 interviews

1 Interview rounds

  • Aptitude Test Round
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 777 Interviews
BigBasket Interview Questions
3.9
 • 356 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 181 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Snapdeal Interview Questions
3.8
 • 76 Interviews
View all
InFynd Data Engineer Salary
based on 4 salaries
₹3 L/yr - ₹5.8 L/yr
60% less than the average Data Engineer Salary in India
View more details
Data Analyst
6 salaries
unlock blur

₹1.2 L/yr - ₹2 L/yr

Junior Software Engineer
4 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Market Research Analyst
4 salaries
unlock blur

₹1.4 L/yr - ₹3 L/yr

Data Engineer
4 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Software Engineer
3 salaries
unlock blur

₹1.5 L/yr - ₹4.4 L/yr

Explore more salaries
Compare InFynd with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm

3.3
Compare

Snapdeal

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