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
3.5

based on 260 Reviews

Filter interviews by

Infovision Interview Questions, Process, and Tips

Updated 9 Dec 2024

Top Infovision Interview Questions and Answers

View all 25 questions

Infovision Interview Experiences

Popular Designations

23 interviews 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 was interviewed 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

Top Infovision Data Engineer Interview Questions and Answers

Q1. What is IR - integration Runtime? what are the types of IR
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Types of hooks and when and why to use custom hooks
  • Ans. 

    Hooks are functions that let you use state and other React features in functional components. Custom hooks are reusable logic functions created by developers.

    • Types of hooks: useState, useEffect, useContext, useReducer, useCallback, useMemo, useRef, useImperativeHandle, useLayoutEffect, useDebugValue

    • Custom hooks are used to extract and reuse logic from components, making code more modular and easier to maintain

    • Custom ho...

  • Answered by AI
  • Q2. Callback functions and callback hell

Skills evaluated in this interview

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Delivery Head Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions about margin and revenue
  • Q2. Project experience
Round 2 - Technical 

(1 Question)

  • Q1. About margin and revenue technically how you are involved in the project

Delivery Head Interview Questions asked at other Companies

Q1. how advanced technology is helping to improve
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Project experience
  • Ans. 

    I have extensive project experience in developing software solutions for various industries.

    • Led a team in developing a customer relationship management system for a retail company

    • Implemented a data analytics platform for a financial institution to improve decision-making processes

    • Designed and deployed a mobile application for a healthcare organization to streamline patient care

    • Collaborated with cross-functional teams t...

  • Answered by AI
  • Q2. Package discussion

Technical Specialist Interview Questions asked at other Companies

Q1. What are the features of Solar wind which you are aware of?
View answer (4)

Infovision interview questions for popular designations

 Senior Technical Lead

 (2)

 Software Engineer

 (2)

 Business Analyst

 (1)

 Data Engineer

 (1)

 Delivery Head

 (1)

 Full Stack Developer

 (1)

 Head Operations

 (1)

 React Js Frontend Developer

 (1)

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Foundation - OOPs concepts

Senior Software Interview Questions asked at other Companies

Q1. Design bookmyshow like application. how will you handle the scenario if two people try to book the same seat at the same time?
View answer (1)

Get interview-ready with Top Infovision Interview Questions

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

(1 Question)

  • Q1. Explain Data engineer pipeline you built
  • Ans. 

    Built a data engineer pipeline to ingest, process, and analyze large volumes of data for real-time insights.

    • Designed and implemented data ingestion process using tools like Apache Kafka or AWS Kinesis.

    • Developed data processing workflows using technologies like Apache Spark or Apache Flink.

    • Built data storage solutions using databases like Apache HBase or Amazon Redshift.

    • Implemented data quality checks and monitoring mec...

  • Answered by AI
Round 2 - Coding Test 

Extract values from a data frame in a continuous time interval

Skills evaluated in this interview

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)

Jobs at Infovision

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Multithreading and time complexity
Round 2 - Technical 

(1 Question)

  • Q1. Mirror binary tree without recursion
  • Ans. 

    Mirror binary tree without recursion by swapping left and right child nodes iteratively

    • Start with the root node and swap its left and right child nodes

    • Then move to the left child node and swap its left and right child nodes

    • Repeat the process for all nodes in the tree until all nodes are mirrored

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

Skills evaluated in this interview

Senior Technical Lead Interview Questions asked at other Companies

Q1. What is containerization (Docker)? what are steps to create container, till it gets deploy on server.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2023. There were 2 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 

(2 Questions)

  • Q1. Technical questions related to data analytics
  • Q2. Questions related to open source technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Cool and awesome interview process without much delay

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Algorithms and some advanced data structures

Round 2 - Technical 

(2 Questions)

  • Q1. Easy Java questions
  • Q2. Database designs and normalization
Round 3 - Case Study 

Backend and systems design

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain WebDriver driver = new ChromeDriver();
  • Ans. 

    WebDriver driver = new ChromeDriver() initializes a new instance of ChromeDriver for controlling the Chrome browser.

    • WebDriver is an interface in Selenium used to interact with web browsers

    • ChromeDriver is a class that implements the WebDriver interface for controlling Chrome browser

    • The 'new' keyword is used to create a new instance of the ChromeDriver class

  • Answered by AI
  • Q2. Write Syntax of relative xpath
  • Ans. 

    Relative xpath syntax is used to locate elements based on their relationship to other elements in the HTML structure.

    • Start with a double forward slash (//)

    • Use the tag name of the element you want to locate

    • Add square brackets with the attribute and value you want to match

  • Answered by AI
  • Q3. Whatare listeners in testng
  • Ans. 

    Listeners in TestNG are used to generate logs or reports during test execution.

    • Listeners in TestNG are interfaces that allow customizing test execution logs and reports.

    • They can be used to perform actions before or after test methods, suites, classes, etc.

    • Examples of listeners in TestNG include ITestListener, IInvokedMethodListener, and IReporter.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Which is the preferable locator for dynamic elements
  • Ans. 

    The preferable locator for dynamic elements is XPath.

    • XPath is more powerful and flexible compared to other locators like ID or class name

    • XPath can locate elements based on their attributes, position, text, etc.

    • Using XPath allows for more precise and reliable element identification

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to change your job

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well about the Company you are being interviewed for. Brush up yourself on the topics which are mentioned on Resume

Skills evaluated in this interview

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)

Infovision Interview FAQs

How many rounds are there in Infovision interview?
Infovision interview process usually has 2-3 rounds. The most common rounds in the Infovision interview process are Technical, HR and Resume Shortlist.
How to prepare for Infovision 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 Java, Python, AWS, Azure DevOps and Javascript.
What are the top questions asked in Infovision interview?

Some of the top questions asked at the Infovision interview -

  1. What is The tcode of Item category determinatio...read more
  2. How will you drive Sales at Infovision? What strategies you can you use to gene...read more
  3. What is IR - integration Runtime? what are the types of...read more
How long is the Infovision interview process?

The duration of Infovision interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infovision Interview Process

based on 9 interviews in last 1 year

Interview experience

3.3
  
Average
View more

People are getting interviews through

based on 19 Infovision interviews
Job Portal
Referral
Campus Placement
WalkIn
Company Website
Recruitment Consultant
37%
16%
11%
5%
5%
5%
21% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
CitiusTech Interview Questions
3.4
 • 262 Interviews
View all

Infovision Reviews and Ratings

based on 260 reviews

3.5/5

Rating in categories

3.1

Skill development

3.4

Work-Life balance

3.4

Salary & Benefits

2.9

Job Security

3.3

Company culture

3.0

Promotions/Appraisal

3.2

Work Satisfaction

Explore 260 Reviews and Ratings
Business Analyst

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

HR Executive - Fresher ( US Region - Night Shift )

Bangalore / Bengaluru

0-2 Yrs

₹ 4.5-6 LPA

Delivery Manager - Bangalore

Bangalore / Bengaluru

10-18 Yrs

₹ 20-35 LPA

Explore more jobs
Softwaretest Engineer
309 salaries
unlock blur

₹2.5 L/yr - ₹6.2 L/yr

Senior Software Engineer
292 salaries
unlock blur

₹6 L/yr - ₹22.1 L/yr

Software Engineer
246 salaries
unlock blur

₹2.8 L/yr - ₹10 L/yr

Technical Lead
179 salaries
unlock blur

₹8 L/yr - ₹35 L/yr

Software Developer
143 salaries
unlock blur

₹3 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Infovision with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.6
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