Upload Button Icon Add office photos
Engaged Employer

i

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

Infovision Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infovision Data Engineer Interview Questions, Process, and Tips

Updated 21 Feb 2024

Infovision Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2024

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

I appeared for an interview in Jan 2024.

Round 1 - Technical 

(15 Questions)

  • Q1. What are window functions in SQL
  • Ans. 

    Window functions in SQL are used to perform calculations across a set of table rows related to the current row.

    • Window functions are used to calculate values based on a set of rows related to the current row.

    • They allow for ranking, aggregation, and other calculations within a specific window of rows.

    • Common window functions include ROW_NUMBER(), RANK(), DENSE_RANK(), and SUM() OVER().

  • Answered by AI
  • Q2. ETL - How to do full load in SSIS, mention the steps
  • Ans. 

    To perform a full load in SSIS, you can use the Data Flow Task with a source and destination component.

    • Create a Data Flow Task in the Control Flow tab of the SSIS package.

    • Add a source component to extract data from the source system.

    • Add a destination component to load data into the destination system.

    • Map the columns from the source to the destination.

    • Run the package to execute the full load.

  • Answered by AI
  • Q3. ETL- how to do the incremental load in ADF and in SSIS
  • Ans. 

    Incremental load in ADF and SSIS involves identifying new or updated data and loading only those changes.

    • In ADF, use watermark columns to track the last loaded value and filter data based on this value

    • In SSIS, use CDC (Change Data Capture) components or custom scripts to identify new or updated data

    • Both ADF and SSIS support incremental loading by comparing source and target data to determine changes

  • Answered by AI
  • Q4. Linked Service Vs Dataset
  • Ans. 

    Linked Service connects to external data sources, while Dataset represents the data within the data store.

    • Linked Service is used to connect to external data sources like databases, APIs, and file systems.

    • Dataset represents the data within the data store and can be used for data processing and analysis.

    • Linked Service defines the connection information and credentials needed to access external data sources.

    • Dataset define...

  • Answered by AI
  • Q5. What is IR - integration Runtime? what are the types of IR
  • Ans. 

    Integration Runtime (IR) is a compute infrastructure that provides data integration capabilities across different network environments.

    • IR is used in Azure Data Factory to provide data integration capabilities

    • There are three types of IR: Azure, Self-hosted, and Azure-SSIS

    • Azure IR is fully managed by Microsoft and is used for data movement in the cloud

    • Self-hosted IR allows data movement between on-premises and cloud data...

  • Answered by AI
  • Q6. Scenario: In ADF, if we have files in FTP folder, how to get it to ADLS where the file size > 10mb.
  • Q7. How to copy data without using multiple activities. Dynamically using loops/ parameterization.
  • Ans. 

    Use a single activity with dynamic parameterization and loops to copy data.

    • Use a loop to iterate through the data source and destination locations.

    • Parameterize the source and destination locations to dynamically copy data.

    • Utilize a scripting language like Python or PowerShell to implement the logic.

    • Example: Use a Python script with a loop to copy files from one folder to another.

    • Example: Use PowerShell script with dyna...

  • Answered by AI
  • Q8. Datawarehouse - What is a Fact and Dimention table
  • Q9. What is snowflake?
  • Ans. 

    Snowflake is a cloud-based data warehousing platform that allows for easy and scalable data storage and analysis.

    • Snowflake is a fully managed service that works on a pay-as-you-go model.

    • It separates storage and compute resources, allowing for better scalability and cost-effectiveness.

    • Snowflake supports SQL queries and has built-in support for semi-structured data like JSON and XML.

    • It provides features like automatic sc...

  • Answered by AI
  • Q10. Agile - Scrum team size?
  • Q11. SQL - (Merge) Insert / update data based on the incoming data.
  • Q12. SQL - Delete Vs Truncate ?
  • Ans. 

    Delete removes rows one by one and can be rolled back, while Truncate removes all rows at once and cannot be rolled back.

    • Delete is a DML command, while Truncate is a DDL command.

    • Delete can be rolled back using a transaction, while Truncate cannot be rolled back.

    • Delete fires triggers on each row deletion, while Truncate does not fire triggers.

    • Delete is slower as it removes rows one by one, while Truncate is faster as it...

  • Answered by AI
  • Q13. How to insert non-duplicate data into target table. how many ways we can do.
  • Ans. 

    To insert non-duplicate data into a target table, you can use methods like using a unique constraint, using a merge statement, or using a temporary table.

    • Use a unique constraint on the target table to prevent duplicate entries.

    • Use a merge statement to insert data into the target table only if it does not already exist.

    • Use a temporary table to store the new data, then insert only the non-duplicate records into the targe

  • Answered by AI
  • Q14. SQL - how do you identify the long running queries.
  • Ans. 

    Identifying long running queries in SQL

    • Monitor query execution times using tools like SQL Server Profiler or Performance Monitor

    • Check system views like sys.dm_exec_requests or sys.dm_exec_query_stats for query durations

    • Use query hints like OPTION (RECOMPILE) to force recompilation of queries for better performance

  • Answered by AI
  • Q15. SQL - online test given with 3 queries. One is related to Joins , second one is related to Agg functions, and 3rd is related to LAG function.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Hashtable and hashmap?
  • Ans. 

    Hashtable is synchronized while hashmap is not.

    • Hashtable is thread-safe while hashmap is not.

    • Hashtable does not allow null keys or values while hashmap allows one null key and multiple null values.

    • Hashtable is slower than hashmap due to synchronization.

    • Hashtable is a legacy class while hashmap is a newer implementation.

  • Answered by AI
  • Q2. Difference between hashmap and concurrent hashmap?
  • Ans. 

    Hashmap is not thread-safe while Concurrent Hashmap is thread-safe.

    • Hashmap is not suitable for multi-threaded environments as it can lead to race conditions and data inconsistencies.

    • Concurrent Hashmap allows multiple threads to access and modify the map concurrently without any data inconsistencies.

    • Concurrent Hashmap uses a technique called lock striping to achieve thread-safety.

    • Concurrent Hashmap is slower than Hashma...

  • Answered by AI
  • Q3. Jdbc step
  • Q4. Spring ioc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was average they asked questions from core java spring hibernate... And so on..

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OOPs concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself.

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python list tuples set dictionary related questions
  • Q2. Decorators generator and django rest framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on logical and basic python fundamental

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of DS and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - be thorough in data structures and algorithms

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Dsa java oops dbms networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience.
You have to be very strong in DSA.

Interview Questionnaire 

1 Question

  • Q1. Basic javascript questions , clouser, promise

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared well on basic of javascript

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. More questions on which topic
  • Q2. Focus on c#, MVC and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well technically and scenario based questions also prepared.

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts with examples, SQL query to find second highest salary, diff between fail fast and fail safe, how did u implement security in your app, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic Java concepts

I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Telephonic technical
  • Q2. Core Java related exception handling ,design pattern ,oops solid design principle, rest API, different annotations of spring and jpa
  • Q3. Same questions on telephonic round but detailed elaborate and given simple problem statement we had to justify that why it's time n space complexity valid. Rest API questions hibernate orm use
  • Q4. Manager round just to check whether you have actually worked on project or not stress testing performance questions scenario questions

Interview Preparation Tips

General Tips: Quite easy just go with preparation
Skills: Core Java sevlet JSP hibernate spring rest API, Communication, Body Language, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-4 weeks

Infovision Interview FAQs

How many rounds are there in Infovision Data Engineer interview?
Infovision interview process usually has 1 rounds. The most common rounds in the Infovision interview process are Technical.
How to prepare for Infovision 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 Infovision. The most common topics and skills that interviewers at Infovision expect are Airflow, Azure DevOps, Big Data, Data Bricks and Data Engineering.
What are the top questions asked in Infovision Data Engineer interview?

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

  1. What is IR - integration Runtime? what are the types of...read more
  2. ETL- how to do the incremental load in ADF and in S...read more
  3. how to insert non-duplicate data into target table. how many ways we can ...read more

Tell us how to improve this page.

Infovision Data Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Infovision Data Engineer Salary
based on 7 salaries
₹3.7 L/yr - ₹14.7 L/yr
17% less than the average Data Engineer Salary in India
View more details
Softwaretest Engineer
308 salaries
unlock blur

₹2.5 L/yr - ₹6.2 L/yr

Senior Software Engineer
290 salaries
unlock blur

₹6 L/yr - ₹21.7 L/yr

Software Engineer
215 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Technical Lead
173 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Technical Specialist
166 salaries
unlock blur

₹8 L/yr - ₹32.6 L/yr

Explore more salaries
Compare Infovision with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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