Upload Button Icon Add office photos
Engaged Employer

i

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

UST Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 4.1k Reviews

Filter interviews by

UST ETL Developer Interview Questions and Answers

Updated 27 Jun 2024

UST ETL Developer Interview Experiences

2 interviews found

ETL Developer Interview Questions & Answers

user image Akshay Jagirdaar

posted on 1 Feb 2024

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

(1 Question)

  • Q1. Some in depth questions about python and java
Round 2 - Coding Test 

Asked some problem solving questions they will allow to choose the language it's good

ETL Developer Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2024

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

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is inital load in ETL
  • Ans. 

    Initial load in ETL refers to the process of loading data from source systems into the data warehouse for the first time.

    • Initial load is typically a one-time process to populate the data warehouse with historical data.

    • It involves extracting data from source systems, transforming it as needed, and loading it into the data warehouse.

    • Initial load is often done using bulk loading techniques to efficiently transfer large vo...

  • Answered by AI
  • Q2. What is difference between cluster and non cluster index
  • Ans. 

    Cluster index physically orders the data on disk, while non-cluster index does not.

    • Cluster index physically orders the data on disk based on the indexed column

    • Non-cluster index does not physically order the data on disk

    • Cluster index can only have one per table, while non-cluster index can have multiple

    • Cluster index is faster for retrieval but slower for inserts and updates

  • Answered by AI

Skills evaluated in this interview

ETL Developer Interview Questions Asked at Other Companies

asked in Ciber
Q1. What are the content of APT_CONFIG_FILE? Can you brief on the rel ... read more
asked in Ciber
Q2. What is RCP? In What scenario you have used this in your project?
Q3. What is trigger . Do Implementation of types of trigger?
asked in Ciber
Q4. What are the methods available in Aggregator stage?
Q5. How will you run 300 SPs sequential n parallel in SQL server

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Informtica with date functions
  • Ans. 

    Informatica is a popular ETL tool used for data integration and transformation. It has built-in functions to handle date operations.

    • Informatica is a powerful ETL tool used for extracting, transforming, and loading data.

    • It provides a variety of built-in functions for handling date operations such as date calculations, formatting, and conversions.

    • Examples of date functions in Informatica include TO_DATE, TO_CHAR, ADD_TO_

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain SSIS and ite use cases
  • Ans. 

    SSIS is a Microsoft tool used for ETL processes in data integration and data warehousing.

    • SSIS stands for SQL Server Integration Services

    • It is used for extracting, transforming, and loading data from various sources to destinations

    • SSIS can be used for automating workflows, data cleansing, and data migration tasks

    • It provides a visual interface for designing data flow tasks and control flow tasks

    • Example: Using SSIS to ext...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Question Answer
  • Q2. Basic SQL , SNWOFLAKE AND ETL Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Strong with Basics
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding problems
1 aptitude
1 puzzle
3 hrs duration

Round 2 - Technical 

(2 Questions)

  • Q1. Sorting algorithms
  • Q2. 1 puzzle - burning candles
Round 3 - Technical 

(2 Questions)

  • Q1. General discussion on resume
  • Q2. Few reasoning questions
Round 4 - HR 

(1 Question)

  • Q1. About company work culture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between linked list and array list
  • Ans. 

    Linked list is a data structure where elements are stored in nodes with pointers to the next node. Array list is a dynamic array that can grow or shrink in size.

    • Linked list allows for efficient insertion and deletion of elements anywhere in the list.

    • Array list provides fast access to elements using index, but slower insertion and deletion compared to linked list.

    • Example: Linked list - 1 -> 2 -> 3 -> 4 -> 5, Array list

  • Answered by AI
  • Q2. Difference between @controller and @ Rest controller
  • Ans. 

    The @Controller annotation is used for traditional MVC controllers, while @RestController is used for RESTful web services.

    • The @Controller annotation is used to define a class as a Spring MVC controller, which can handle HTTP requests and return a view.

    • The @RestController annotation is used to define a class as a controller for RESTful web services, which can handle HTTP requests and return data in JSON or XML format.

    • T...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 8 interview rounds.

Round 1 - Assignment 

Database Management system SQL and PlSQL

Round 2 - Assignment 

Database Base Management system SQL and PlSQL

Round 3 - Aptitude Test 

Database Management system

Round 4 - Aptitude Test 

Database Management system

Round 5 - Group Discussion 

Database Management system

Round 6 - Assignment 

Database Management system

Round 7 - Case Study 

Database Base Management system

Round 8 - HR 

(5 Questions)

  • Q1. Database Management system
  • Q2. SQL and PlSQL Mango Data And Manu Database Management system
  • Q3. C Language and C++Language and Java
  • Q4. Data Analysis and Data entry
  • Q5. DBMS C,C++ Java Data Entry Ms Excel Ms Word Ms PP

Interview Preparation Tips

Interview preparation tips for other job seekers - Database Management system SQL and PlSQL and C Language and C++Language and Java And Web design and Web Developer

UST Interview FAQs

How many rounds are there in UST ETL Developer interview?
UST interview process usually has 1-2 rounds. The most common rounds in the UST interview process are Technical, Coding Test and One-on-one Round.
How to prepare for UST ETL Developer 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 UST. The most common topics and skills that interviewers at UST expect are ETL, SQL, Informatica, Application Development and Bash.
What are the top questions asked in UST ETL Developer interview?

Some of the top questions asked at the UST ETL Developer interview -

  1. What is difference between cluster and non cluster in...read more
  2. What is inital load in ...read more
  3. Some in depth questions about python and j...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 UST interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
UST ETL Developer Salary
based on 82 salaries
₹4 L/yr - ₹11.5 L/yr
6% less than the average ETL Developer Salary in India
View more details

UST ETL Developer Reviews and Ratings

based on 7 reviews

4.7/5

Rating in categories

4.7

Skill development

4.7

Work-Life balance

4.5

Salary & Benefits

4.7

Job Security

4.6

Company culture

4.5

Promotions/Appraisal

4.6

Work Satisfaction

Explore 7 Reviews and Ratings
Software Developer
2k salaries
unlock blur

₹3.5 L/yr - ₹12.1 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹6.5 L/yr - ₹25.7 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.6 L/yr - ₹14.6 L/yr

System Analyst
1.2k salaries
unlock blur

₹6.5 L/yr - ₹22.2 L/yr

Senior Software Developer
1.1k salaries
unlock blur

₹5.5 L/yr - ₹19.5 L/yr

Explore more salaries
Compare UST with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview