Upload Button Icon Add office photos
Premium Employer

i

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

Fivetran Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fivetran Software Engineer Interview Questions and Answers

Updated 24 Apr 2024

Fivetran Software Engineer Interview Experiences

2 interviews found

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 in Mar 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Starts with an online assessment test on HackerRank. Expect a LeetCode Medium question most of the time, mostly created by HackerRank.

Round 2 - One-on-one 

(2 Questions)

  • Q1. LC medium related to dynamic programming.
  • Q2. LC easy related to heaps.
Round 3 - One-on-one 

(1 Question)

  • Q1. LC medium-hard, don't remember the category.
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a design round. You can expect to be asked to design the DB schema and API endpoints for a well-known use case. Interviewer was super helpful and receptive throughout. While getting to an agreeabl...
Round 5 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Mostly discussions about your profile, discussion on past projects from your resume. You can do well in this round if you know your basics and can explain your projects to some depth....

Interview Preparation Tips

Interview preparation tips for other job seekers - Apart from DSA (which is very important in the initial rounds, I would say), putting down your understanding of your past projects in a doc and refining it should help in most conversations you have throughout the interview process. Also brush up on schema design, normalisation, and API design.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jul 2022. There were 6 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 

There were two or three DSA questions in the test, it was easy to complete.

Round 3 - Technical 

(1 Question)

  • Q1. It was a DSA coding round, also has project discussion. The question has to solved completely without errors. This interview lasted 2 hours for me.
Round 4 - Technical 

(1 Question)

  • Q1. There was another DSA coding round as well, I would say a medium level question.
Round 5 - Technical 

(1 Question)

  • Q1. API design round. Medium hard question, the interviewer was very friendly.
Round 6 - HR 

(1 Question)

  • Q1. A meeting with HR. They just look to see if you are a decent human being. A bad attitude could result in not getting an offer, but this is generally a breeze.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

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

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. Difference between static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants that cannot be changed.

    • Static variables belong to the class itself, while final variables are constants that cannot be modified.

    • Static methods can be called without creating an instance of the class, while final methods cannot be overridden.

    • Static variables are shared among all instances of a class, while final variables...

  • Answered by AI
  • Q2. ArraysList vs LinkedList
  • Ans. 

    ArrayList is better for random access, LinkedList is better for frequent insertions/deletions.

    • ArrayList uses dynamic array to store elements, LinkedList uses doubly linked list.

    • ArrayList provides fast random access to elements using index, LinkedList provides fast insertion/deletion at any position.

    • Example: ArrayList is suitable for scenarios where random access is required like searching, LinkedList is suitable for sc...

  • Answered by AI
  • Q3. Describe Java8 Features
  • Ans. 

    Java8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces are interfaces with a single abstract method, which can be implemented using lambda expressions.

    • Streams provide a way to work with collections of objects in a functional style.

    • Default methods allow inte...

  • Answered by AI
  • Q4. Gave one scenario to solve using streams in java8
  • Ans. 

    Using streams in Java 8 to filter and map a list of numbers

    • Create a list of numbers

    • Use stream to filter out even numbers

    • Use map to square each number

    • Collect the results into a new list

  • Answered by AI
  • Q5. Multithreading- Write program to print even and odd numbers from 1 to 20 using 2 threads. 1 thread will responsible for printing even and another for Odd. And print in such a manner it should be alternate....
  • Ans. 

    Program to print even and odd numbers from 1 to 20 using 2 threads alternately.

    • Create two threads, one for printing even numbers and one for printing odd numbers.

    • Use wait(), notify(), and notifyAll() to ensure alternate printing.

    • Ensure synchronization between the two threads to avoid race conditions.

    • Example: Thread 1 prints even numbers (2, 4, 6, ...) and Thread 2 prints odd numbers (1, 3, 5, ...).

  • Answered by AI
  • Q6. Why strings immutable
  • Ans. 

    Strings are immutable to ensure data integrity and security.

    • Immutable strings prevent accidental changes to data

    • Immutable strings allow for safe sharing of data between different parts of a program

    • Immutable strings help prevent security vulnerabilities like SQL injection attacks

  • Answered by AI
  • Q7. Outer Join SQL query
  • Q8. What is the purpose of using default methods in java8?
  • Ans. 

    Default methods in Java 8 allow interfaces to have method implementations, enabling backward compatibility and reducing code duplication.

    • Default methods were introduced in Java 8 to provide a way to add new methods to interfaces without breaking existing implementations.

    • They allow interfaces to have method implementations, which was not possible before Java 8.

    • Default methods can be overridden in implementing classes to...

  • Answered by AI
Round 2 - Technical 

(8 Questions)

  • Q1. 1 coding problem related to Anagrams
  • Q2. 1 Java8 streams problem
  • Ans. 

    Using Java8 streams to solve a problem

    • Use stream() method to convert a collection into a stream

    • Use filter() method to filter elements based on a condition

    • Use map() method to transform elements

    • Use collect() method to collect the elements into a new collection

  • Answered by AI
  • Q3. What are checked exceptions
  • Ans. 

    Checked exceptions are exceptions that must be either caught or declared in the method signature.

    • Checked exceptions are subclasses of Exception (excluding RuntimeException and its subclasses)

    • Checked exceptions must be either caught using try-catch block or declared in the method signature using 'throws' keyword

    • Examples of checked exceptions in Java include IOException, SQLException, and ClassNotFoundException

  • Answered by AI
  • Q4. Purpose of @SpringBootApplication annotation?
  • Ans. 

    Annotation used to mark a class as a Spring Boot application

    • Combines @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations

    • Used to bootstrap and launch a Spring application

    • Automatically scans for Spring components in the package and sub-packages

  • Answered by AI
  • Q5. Use of @Qualifier
  • Ans. 

    Annotation used in Spring to specify which bean to autowire

    • Used to disambiguate when multiple beans of the same type are present

    • Can be used with @Autowired to specify which bean to inject

    • Helps in resolving dependencies when multiple beans of the same type are available

  • Answered by AI
  • Q6. What are microservices?
  • Ans. 

    Microservices are a software development technique where an application is composed of small, independent services that communicate with each other.

    • Microservices are designed to be small, focused on specific tasks, and independently deployable.

    • Each microservice typically runs its own process and communicates with other services through APIs.

    • Microservices allow for easier scalability, flexibility, and maintenance compar...

  • Answered by AI
  • Q7. Design patterns
  • Q8. How microservices communicate with each other
  • Ans. 

    Microservices communicate with each other through APIs, messaging queues, or service meshes.

    • APIs: Microservices can communicate with each other by exposing APIs that allow them to send and receive data.

    • Messaging queues: Microservices can use messaging queues like RabbitMQ or Kafka to send messages to each other asynchronously.

    • Service meshes: Microservices can communicate through a service mesh like Istio, which handles...

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. Asked about projects.
  • Q2. Complete flow and business use case of the project
  • Ans. 

    The project involves creating a web-based platform for online shopping with features like user registration, product browsing, shopping cart, and payment processing.

    • User registers on the platform with personal information

    • User browses products by category or search

    • User adds products to the shopping cart

    • User proceeds to checkout and makes payment

    • Order is confirmed and user receives a confirmation email

  • Answered by AI
  • Q3. Interviewer was more concerned about matching the tech stack with job description

Interview Preparation Tips

Topics to prepare for Deutsche Telekom Digital Labs Software Engineer interview:
  • java8
  • Multithreading
  • Spring Boot
  • Microservices
  • MySQL
  • Basic OOPS Concept
  • Streams
  • Exception Handling

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basics of Data structures, C++
  • Q2. How do you reverse an array
  • Ans. 

    To reverse an array of strings, iterate through half of the array and swap elements from start and end.

    • Iterate through half of the array

    • Swap elements from start and end of the array

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to be the last node visited

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. It is related to windows application and basic c# coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Some sql queries and theoritical questions about sql.
  • Q2. Everything in your resume will be asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare very well what you write in your resume.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 2 sum problem on number
Round 2 - Technical 

(1 Question)

  • Q1. Json data manipulation
Round 3 - HR 

(1 Question)

  • Q1. Normal hr question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Polyfills , basic react app
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 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 

1. Search in a row and column wise sorted matrix

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Web Fundamentals
  • Q2. 2.Localstorage vs session storage
  • Ans. 

    Localstorage stores data with no expiration date, while session storage stores data for one session only.

    • Localstorage data persists even after the browser is closed, while session storage data is cleared when the session ends.

    • Localstorage has a larger storage capacity compared to session storage.

    • Localstorage data is accessible across different tabs and windows of the same browser, while session storage data is limited ...

  • Answered by AI

Skills evaluated in this interview

Fivetran Interview FAQs

How many rounds are there in Fivetran Software Engineer interview?
Fivetran interview process usually has 5-6 rounds. The most common rounds in the Fivetran interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Fivetran Software 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 Fivetran . The most common topics and skills that interviewers at Fivetran expect are Data Management, Data Structures, SQL, Team Building and Architecture.
What are the top questions asked in Fivetran Software Engineer interview?

Some of the top questions asked at the Fivetran Software Engineer interview -

  1. This was a design round. You can expect to be asked to design the DB schema and...read more
  2. It was a DSA coding round, also has project discussion. The question has to sol...read more
  3. There was another DSA coding round as well, I would say a medium level questi...read more

Tell us how to improve this page.

Fivetran Software Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Fivetran Software Engineer Salary
based on 24 salaries
₹9 L/yr - ₹30.2 L/yr
136% more than the average Software Engineer Salary in India
View more details

Fivetran Software Engineer Reviews and Ratings

based on 3 reviews

4.0/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

4.6

Salary

3.6

Job security

4.3

Company culture

4.6

Promotions

4.0

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
24 salaries
unlock blur

₹9 L/yr - ₹30.2 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹27 L/yr - ₹50 L/yr

Software Engineer II
7 salaries
unlock blur

₹20 L/yr - ₹30 L/yr

Software Engineer2
6 salaries
unlock blur

₹28 L/yr - ₹30 L/yr

Senior Customer Support Engineer
6 salaries
unlock blur

₹25 L/yr - ₹38.5 L/yr

Explore more salaries
Compare Fivetran with

Talend Data Integration Services

4.0
Compare

SnapLogic

4.0
Compare

Hevo Data

3.7
Compare

Panoply Packagings

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