Upload Button Icon Add office photos

Filter interviews by

Informatica Business Solutions Software Engineer Interview Questions and Answers

Updated 23 Nov 2024

Informatica Business Solutions Software Engineer Interview Experiences

3 interviews found

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

I applied via LinkedIn and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General Questions about experience and interest in role
Round 2 - One-on-one 

(2 Questions)

  • Q1. Managerial Round
  • Q2. Behavioral questions
Round 3 - Coding Test 

Live coding challenge

Round 4 - Technical 

(1 Question)

  • Q1. General Questions about JS and React
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain OSI model in detail
  • Ans. 

    The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

    • The OSI model stands for Open Systems Interconnection model.

    • It divides network communication into seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has specific functions and interacts with adjacent layers for data transmission.

    • Exampl...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain Data modeling with Start Schema
  • Ans. 

    Data modeling with Star Schema involves organizing data into a central fact table surrounded by dimension tables.

    • Central fact table contains numerical data that is being analyzed

    • Dimension tables provide context to the data in the fact table

    • Each dimension table is connected to the fact table through foreign keys

    • Star Schema is commonly used in data warehousing for efficient querying

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Akansha Gupta

posted on 23 Nov 2024

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

1 coding 1 sql questions

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Sliding window based question
Round 2 - Technical 

(1 Question)

  • Q1. Java, JS, SQL based questions
Round 3 - HR 

(1 Question)

  • Q1. Reasons to switch , motivation , salary discussion

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions were there

Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions
  • Q2. Os, dbms, core concept of cs
Round 3 - Technical 

(1 Question)

  • Q1. Core concept of cs
  • Ans. 

    Core concept of computer science is the study of algorithms and data structures.

    • Algorithms are step-by-step procedures for solving problems.

    • Data structures are ways to organize and store data efficiently.

    • Examples include sorting algorithms like bubble sort and data structures like arrays and linked lists.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Maths ,english ,reasoning, puzzles

Round 2 - Coding Test 

Jackeron was the platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and avoid cheasting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Linkedlist , array, stack
  • Q2. What is big data
  • Ans. 

    Big data refers to large volumes of structured and unstructured data that is too complex for traditional data processing applications.

    • Big data involves processing and analyzing large volumes of data to uncover patterns, trends, and insights.

    • It can come from various sources such as social media, sensors, devices, and business transactions.

    • Examples of big data technologies include Hadoop, Spark, and NoSQL databases.

    • Big d...

  • Answered by AI

Skills evaluated in this interview

Informatica Business Solutions Interview FAQs

How many rounds are there in Informatica Business Solutions Software Engineer interview?
Informatica Business Solutions interview process usually has 2-3 rounds. The most common rounds in the Informatica Business Solutions interview process are Technical, Coding Test and HR.
How to prepare for Informatica Business Solutions 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 Informatica Business Solutions. The most common topics and skills that interviewers at Informatica Business Solutions expect are Informatica, Data Management, Troubleshooting, Agile and Data Structures.
What are the top questions asked in Informatica Business Solutions Software Engineer interview?

Some of the top questions asked at the Informatica Business Solutions Software Engineer interview -

  1. Explain Data modeling with Start Sch...read more
  2. Explain OSI model in det...read more
  3. General Questions about JS and Re...read more

Tell us how to improve this page.

Informatica Business Solutions Software Engineer Interview Process

based on 3 interviews in last 1 year

Interview experience

4.7
  
Excellent

People are getting interviews through

based on 1 Informatica Business Solutions interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Informatica Business Solutions Software Engineer Salary
based on 180 salaries
₹7.8 L/yr - ₹22 L/yr
104% more than the average Software Engineer Salary in India
View more details

Informatica Business Solutions Software Engineer Reviews and Ratings

based on 29 reviews

4.4/5

Rating in categories

3.6

Skill development

4.4

Work-Life balance

4.1

Salary & Benefits

3.3

Job Security

4.2

Company culture

3.3

Promotions/Appraisal

3.6

Work Satisfaction

Explore 29 Reviews and Ratings
Software Engineer
180 salaries
unlock blur

₹7.8 L/yr - ₹22 L/yr

Senior Software Engineer
148 salaries
unlock blur

₹9.8 L/yr - ₹32 L/yr

Lead Software Engineer
64 salaries
unlock blur

₹22 L/yr - ₹43 L/yr

Associate Software Engineer
63 salaries
unlock blur

₹6.3 L/yr - ₹15.5 L/yr

QA Engineer
58 salaries
unlock blur

₹8.5 L/yr - ₹19.7 L/yr

Explore more salaries
Compare Informatica Business Solutions with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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