Upload Button Icon Add office photos
Engaged Employer

i

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

Infiniti Software Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infiniti Software Solutions Software Trainee Interview Questions and Answers

Updated 10 Jun 2025

30 Interview questions

A Software Trainee was asked 3mo ago
Q. What are HTML, CSS, and JavaScript, and how are they used in web development?
Ans. 

HTML, CSS, and JavaScript are core technologies for building and designing web pages.

  • HTML (HyperText Markup Language) structures the content of web pages. Example: <h1>Title</h1>

  • CSS (Cascading Style Sheets) styles the appearance of web pages. Example: body { background-color: blue; }

  • JavaScript adds interactivity and dynamic behavior to web pages. Example: alert('Hello, World!');

  • Together, they create a ...

A Software Trainee was asked 3mo ago
Q. What are the steps to create a form using HTML?
Ans. 

Creating a form in HTML involves defining the structure, input elements, and submission methods for user data collection.

  • 1. Start with the <form> tag: This defines the form element. Example: <form action='submit.php' method='post'>.

  • 2. Add input elements: Use <input>, <textarea>, <select>, etc., to collect user data. Example: <input type='text' name='username'>.

  • 3. Label your inpu...

Software Trainee Interview Questions Asked at Other Companies

asked in Jhaishna
Q1. 1. What is java and it's features ? 2. Why it is called platform ... read more
Q2. Why is the String class immutable in Java?
Q3. Q1. What is the difference between “==” and “equals(…)” in compar ... read more
Q4. Given the coordinates of a bishop, what are all the possible coor ... read more
asked in Qualitest
Q5. PayTM is about to launch and you have to test it. What test cases ... read more
A Software Trainee was asked 3mo ago
Q. Write a program to print a pattern.
Ans. 

This program prints a specific pattern using nested loops in Python.

  • Use nested loops to control rows and columns.

  • For example, to print a right triangle pattern:

  • 1. *

  • 2. **

  • 3. ***

  • 4. ****

  • 5. *****

  • Use a loop to iterate through the number of rows.

A Software Trainee was asked 3mo ago
Q. Write a program to segregate odd and even numbers in an array.
Ans. 

This program segregates an array into odd and even numbers, returning two separate arrays.

  • 1. Initialize two empty arrays: one for even numbers and one for odd numbers.

  • 2. Loop through the original array and check each number.

  • 3. If the number is even (number % 2 == 0), add it to the even array.

  • 4. If the number is odd (number % 2 != 0), add it to the odd array.

  • 5. Return or print both arrays.

  • Example: Input: [1, 2, 3, ...

A Software Trainee was asked 3mo ago
Q. What is Object-Oriented Programming (OOP) and what are its key concepts?
Ans. 

Object-Oriented Programming (OOP) is a programming paradigm based on objects that encapsulate data and behavior.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class from an existing class, inheriting attributes and methods (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interf...

A Software Trainee was asked 3mo ago
Q. What is the difference between a structure and a class in programming?
Ans. 

Structures are value types, while classes are reference types, affecting memory management and behavior in programming.

  • Structures are typically used for lightweight data storage, e.g., 'struct Point { int x; int y; };'

  • Classes support inheritance, allowing for code reuse, e.g., 'class Animal { void speak(); } class Dog : Animal { void speak(); }'

  • Structures are copied by value, while classes are copied by reference,...

A Software Trainee was asked 3mo ago
Q. What are the key concepts of Object-Oriented Programming (OOP) in Java?
Ans. 

Key OOP concepts in Java include encapsulation, inheritance, polymorphism, and abstraction, enabling modular and reusable code.

  • Encapsulation: Bundling data and methods in classes. Example: 'class Car { private String color; public void setColor(String c) { color = c; }}'

  • Inheritance: Mechanism to create new classes from existing ones. Example: 'class Vehicle { } class Car extends Vehicle { }'

  • Polymorphism: Ability t...

Are these interview questions helpful?
A Software Trainee was asked 3mo ago
Q. How can you create a pattern by taking user input?
Ans. 

You can create patterns using loops and user input to define dimensions and characters for the pattern.

  • Use nested loops: Outer loop for rows, inner loop for columns.

  • Get user input for the number of rows and columns.

  • Use characters like '*', '#', or user-defined characters to form the pattern.

  • Example: For a right triangle pattern, use nested loops to print '*' based on the current row number.

A Software Trainee was asked 3mo ago
Q. What is the problem statement for calculating the count of distinct elements in an array?
Ans. 

Count distinct elements in an array by identifying unique values and ignoring duplicates.

  • Use a data structure like a Set to store unique elements. Example: ['apple', 'banana', 'apple'] results in 2 distinct elements.

  • Iterate through the array and add each element to the Set. Example: ['cat', 'dog', 'cat', 'mouse'] gives 3 distinct elements.

  • The size of the Set at the end of the iteration gives the count of distinct ...

A Software Trainee was asked 3mo ago
Q. What is the code to reverse a string?
Ans. 

Reversing a string involves rearranging its characters in the opposite order, which can be done using various programming techniques.

  • Using Python: reversed_string = original_string[::-1]

  • Using Java: String reversed = new StringBuilder(original).reverse().toString();

  • Using C++: std::reverse(original.begin(), original.end());

  • Using JavaScript: let reversed = original.split('').reverse().join('');

Infiniti Software Solutions Software Trainee Interview Experiences

41 interviews found

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

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

The aptitude test consists of straightforward questions that are easy to solve.

Round 2 - Coding Test 

I enjoyed writing and compiling the code, which is quite straightforward.

Round 3 - HR 

(3 Questions)

  • Q1. What can you tell me about the Infiniti company?
  • Q2. What makes you a suitable candidate for this position?
  • Ans. 

    I possess a strong foundation in programming, a passion for learning, and a collaborative mindset, making me an ideal fit for this role.

    • Strong programming skills: Proficient in languages like Java and Python, demonstrated through projects and coursework.

    • Eager learner: Completed online courses in web development and data structures to enhance my skills.

    • Team player: Collaborated on a group project to develop a mobile app...

  • Answered by AI
  • Q3. Are you comfortable working in Chennai?
  • Ans. 

    Yes, I am comfortable working in Chennai due to its vibrant tech scene and cultural diversity.

    • Chennai is a major IT hub, offering numerous opportunities for growth.

    • The city has a rich cultural heritage, making it an exciting place to live.

    • I appreciate the warm climate and the friendly people of Chennai.

    • Public transport is well-developed, making commuting easier.

    • I have friends and family in the area, providing a support...

  • Answered by AI
Round 4 - Technical 

(6 Questions)

  • Q1. What are the key concepts of Object-Oriented Programming (OOP) in Java?
  • Ans. 

    Key OOP concepts in Java include encapsulation, inheritance, polymorphism, and abstraction, enabling modular and reusable code.

    • Encapsulation: Bundling data and methods in classes. Example: 'class Car { private String color; public void setColor(String c) { color = c; }}'

    • Inheritance: Mechanism to create new classes from existing ones. Example: 'class Vehicle { } class Car extends Vehicle { }'

    • Polymorphism: Ability to per...

  • Answered by AI
  • Q2. Sql questions about indexing, truncate,delete,drop,DBMS,sql definition,rdbms and some other questions
  • Q3. What is the code to reverse a string?
  • Ans. 

    Reversing a string involves rearranging its characters in the opposite order, which can be done using various programming techniques.

    • Using Python: reversed_string = original_string[::-1]

    • Using Java: String reversed = new StringBuilder(original).reverse().toString();

    • Using C++: std::reverse(original.begin(), original.end());

    • Using JavaScript: let reversed = original.split('').reverse().join('');

  • Answered by AI
  • Q4. How can you create a pattern by taking user input?
  • Ans. 

    You can create patterns using loops and user input to define dimensions and characters for the pattern.

    • Use nested loops: Outer loop for rows, inner loop for columns.

    • Get user input for the number of rows and columns.

    • Use characters like '*', '#', or user-defined characters to form the pattern.

    • Example: For a right triangle pattern, use nested loops to print '*' based on the current row number.

  • Answered by AI
  • Q5. What is the process for finding the first minimum element in an array?
  • Ans. 

    To find the first minimum element in an array, iterate through the array and track the smallest value encountered.

    • Initialize a variable to hold the minimum value, e.g., `minElement = arr[0]`.

    • Loop through the array starting from the first element.

    • For each element, compare it with `minElement`. If it's smaller, update `minElement`.

    • Continue until the end of the array is reached.

    • Return `minElement` as the first minimum ele...

  • Answered by AI
  • Q6. What is the problem statement for calculating the count of distinct elements in an array?
  • Ans. 

    Count distinct elements in an array by identifying unique values and ignoring duplicates.

    • Use a data structure like a Set to store unique elements. Example: ['apple', 'banana', 'apple'] results in 2 distinct elements.

    • Iterate through the array and add each element to the Set. Example: ['cat', 'dog', 'cat', 'mouse'] gives 3 distinct elements.

    • The size of the Set at the end of the iteration gives the count of distinct eleme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a great opportunity for freshers to learn and the work environment is conducive to their growth.

Software Trainee Interview Questions & Answers

user image Philip Billu

posted on 4 Dec 2024

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Very basic aptitude concepts asked 40 questions 1 hr time

Round 2 - Coding Test 

2 problems to be solved. Myself solved 1 problem but my friends solved 1.5 problem and taken grade is(partially correct) using Google and AI. At last there selected students who are all solved 1 problem also

Round 3 - Technical 

(6 Questions)

  • Q1. Detailed project explanation
  • Q2. Internship experience
  • Ans. 

    I completed an internship where I developed software solutions, collaborated with teams, and enhanced my coding skills.

    • Worked on a project to develop a web application using React and Node.js, improving my front-end and back-end skills.

    • Collaborated with a team of developers, participating in daily stand-ups and code reviews to enhance team communication.

    • Implemented a feature that reduced loading time by 30%, demonstrat...

  • Answered by AI
  • Q3. OOPS concepts and Resume screening
  • Q4. SQL joins and basics
  • Q5. Favourite programming language asked and said to solve a 2 simple coding problems
  • Q6. The person who solved 1.5 questions out of 2 questions using Google and AI where caught in technical round
Round 4 - HR 

(1 Question)

  • Q1. Beware in HR round Answering to HR questions is seriously hard . Prepare well and be ready to answer question. HR asking questions is about your point of view.

Interview Preparation Tips

Topics to prepare for Infiniti Software Solutions Software Trainee interview:
  • Oops
  • SQL joins
  • Coding
  • Project
Interview preparation tips for other job seekers - Be genuine in coding round. Student who don't use ai only selected. Prepare well for technical specially OOPS concepts, SQL joins and coding
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Quantitative aptitude, reasoning

Round 2 - Coding Test 

Arrays and strings play a crucial role in programming.

Round 3 - Technical 

(3 Questions)

  • Q1. What is the difference between a structure and a class in programming?
  • Ans. 

    Structures are value types, while classes are reference types, affecting memory management and behavior in programming.

    • Structures are typically used for lightweight data storage, e.g., 'struct Point { int x; int y; };'

    • Classes support inheritance, allowing for code reuse, e.g., 'class Animal { void speak(); } class Dog : Animal { void speak(); }'

    • Structures are copied by value, while classes are copied by reference, affe...

  • Answered by AI
  • Q2. What is Object-Oriented Programming (OOP) and what are its key concepts?
  • Ans. 

    Object-Oriented Programming (OOP) is a programming paradigm based on objects that encapsulate data and behavior.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class from an existing class, inheriting attributes and methods (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same interface f...

  • Answered by AI
  • Q3. What programming languages do you know, and basic questions related to them?

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong foundation in the basics of any programming languages.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Initially, they conducted the interview online, which was quite simple, and they asked 40 aptitude questions.

Round 2 - Coding Test 

In the second round, the interview was conducted online, where they asked three coding-related questions concerning arrays, XOR gates, and cube roots.

Round 3 - Technical 

(1 Question)

  • Q1. In the third round, a face-to-face interview was conducted where questions were asked related to compilers, interpreters, JVM, JRE, JIT, and inheritance.
Round 4 - HR 

(1 Question)

  • Q1. After clearing this round, they conducted the HR interview, during which they asked for a self-introduction and inquired about the company's products. Finally am cleared 4 rounds and got selected.

Interview Preparation Tips

Interview preparation tips for other job seekers - When attending an interview at Infiniti, you should be well-prepared in any programming language and familiar with the company's details.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Basic aptitude questions.

Round 2 - Coding Test 

It's important to have a clear understanding of the basic concepts in any programming language.

Round 3 - Technical 

(2 Questions)

  • Q1. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Object-Oriented Programming (OOP) is a programming paradigm based on objects that encapsulate data and behavior.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class based on an existing class, inheriting its attributes and methods (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same int...

  • Answered by AI
  • Q2. Was I required to write code on the spot during the interview?
Round 4 - HR 

(2 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    Aspiring software developer with a passion for coding, problem-solving, and continuous learning in technology.

    • Educational Background: Completed a Bachelor's degree in Computer Science.

    • Technical Skills: Proficient in languages like Java, Python, and JavaScript.

    • Projects: Developed a web application for task management using React and Node.js.

    • Internship Experience: Completed an internship at XYZ Company, where I contribut...

  • Answered by AI
  • Q2. What do you know about the company?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

It is an aptitude round that we conducted, focusing on basic concepts such as percentages, profit and loss, time, speed, and distance, along with other fundamental aptitude topics.

Round 2 - Coding Test 

We have encountered some issues on various topics, including writing code in Java, as well as creating basic HTML, CSS, and SQL code.

Round 3 - Technical 

(1 Question)

  • Q1. What is the difference between the 'for' loop and the 'while' loop? Additionally, what basic concepts of Object-Oriented Programming (OOP) were covered in your coding round?
  • Ans. 

    The 'for' loop is used for a known number of iterations, while the 'while' loop continues until a condition is false.

    • The 'for' loop has a defined initialization, condition, and increment/decrement: for (int i = 0; i < 10; i++) { }

    • The 'while' loop checks the condition before executing the block: while (i < 10) { }

    • Use 'for' when the number of iterations is known; use 'while' when it is not.

    • Example of 'for': for (in...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. They were raised from my resume, and told me to give my self introduction.
  • Q2. Then I was asked to explain about my projects, internship and courses
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

The design of the test page was satisfactory.

Round 2 - Coding Test 

I appreciate the compiler, and I find the workflow and animations to be appealing.

Round 3 - HR 

(2 Questions)

  • Q1. What is the difference between JVM and JRE?
  • Ans. 

    JVM is the Java Virtual Machine that executes Java bytecode, while JRE is the Java Runtime Environment that provides libraries and components for execution.

    • JVM (Java Virtual Machine) is responsible for executing Java bytecode.

    • JRE (Java Runtime Environment) includes JVM along with libraries and other components needed to run Java applications.

    • JVM is platform-independent, allowing Java programs to run on any device with ...

  • Answered by AI
  • Q2. What is a garbage collector in programming?
  • Ans. 

    A garbage collector automatically manages memory by reclaiming unused objects, preventing memory leaks in programming languages.

    • Garbage collection helps in automatic memory management.

    • It identifies and disposes of objects that are no longer needed.

    • Languages like Java and C# use garbage collectors to manage memory.

    • Example: In Java, the garbage collector runs in the background to free memory.

    • It reduces the risk of memory...

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Programming related to pattern series
  • Q2. Real world Problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - A welcoming company with a friendly atmosphere.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Questions related to basic aptitude, computer fundamentals, and programming are asked.

Round 2 - Aptitude Test 

Aptitude questions related to verbal and logical reasoning tend to be of intermediate to slightly challenging difficulty.

Round 3 - Coding Test 

Creative and logical programming questions are presented that focus on strings, loops, and logical reasoning.

Round 4 - HR 

(3 Questions)

  • Q1. What are HTML, CSS, and JavaScript, and how are they used in web development?
  • Ans. 

    HTML, CSS, and JavaScript are core technologies for building and designing web pages.

    • HTML (HyperText Markup Language) structures the content of web pages. Example: <h1>Title</h1>

    • CSS (Cascading Style Sheets) styles the appearance of web pages. Example: body { background-color: blue; }

    • JavaScript adds interactivity and dynamic behavior to web pages. Example: alert('Hello, World!');

    • Together, they create a compl...

  • Answered by AI
  • Q2. What are the steps to create a form using HTML?
  • Ans. 

    Creating a form in HTML involves defining the structure, input elements, and submission methods for user data collection.

    • 1. Start with the <form> tag: This defines the form element. Example: <form action='submit.php' method='post'>.

    • 2. Add input elements: Use <input>, <textarea>, <select>, etc., to collect user data. Example: <input type='text' name='username'>.

    • 3. Label your inputs: U...

  • Answered by AI
  • Q3. What are the various concepts of Object-Oriented Programming (OOP), and can you explain each of them?
  • Ans. 

    OOP is a programming paradigm based on objects, encapsulating data and behavior through concepts like inheritance and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same ...

  • Answered by AI
Round 5 - HR 

(4 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    Aspiring software developer with a passion for coding, problem-solving, and continuous learning in technology.

    • Currently pursuing a degree in Computer Science, focusing on software development.

    • Completed internships where I worked on web applications using JavaScript and React.

    • Participated in coding competitions, enhancing my problem-solving skills.

    • Contributed to open-source projects, gaining experience in collaborative ...

  • Answered by AI
  • Q2. What information do you have about the company?
  • Q3. What are the current projects being undertaken by the company?
  • Q4. What do you know about the founder and the company background?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

This is a travel-based company, and the first round consists of aptitude SQL-related questions, which are easy and fairly standard.

Round 2 - Technical 

(1 Question)

  • Q1. They asked me about my familiarity with programming languages and posed intermediate-level questions such as, "What is the difference between static and final?"
Round 3 - HR 

(1 Question)

  • Q1. During this round, what aspects of your attitude, communication skills, and choice of domain were evaluated, and what general questions were you asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong understanding of your domain; since this is a travel-based company, knowledge of databases and web-related technologies is beneficial.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

In the first round, they conducted an online aptitude test.

Round 2 - Coding Test 

In the second round, they also conducted an online coding test, where they asked three questions related to data structures and algorithms, specifically focusing on arrays and XOR gate-based programs.

Round 3 - Technical 

(1 Question)

  • Q1. In the third round, a face-to-face interview was conducted, during which technical questions related to compilers, interpreters, JVM, JRE, JIT, and inheritance were asked.
Round 4 - HR 

(1 Question)

  • Q1. After clearing this round, what format did you use to introduce yourself and the company's products?

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Infiniti Software Solutions?
Ask anonymously on communities.

Infiniti Software Solutions Interview FAQs

How many rounds are there in Infiniti Software Solutions Software Trainee interview?
Infiniti Software Solutions interview process usually has 3-4 rounds. The most common rounds in the Infiniti Software Solutions interview process are Coding Test, Aptitude Test and Technical.
What are the top questions asked in Infiniti Software Solutions Software Trainee interview?

Some of the top questions asked at the Infiniti Software Solutions Software Trainee interview -

  1. What is the process for finding the first minimum element in an arr...read more
  2. What are the various concepts of Object-Oriented Programming (OOP), and can you...read more
  3. What are the key concepts of Object-Oriented Programming (OOP) in Ja...read more
How long is the Infiniti Software Solutions Software Trainee interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 45 interview experiences

Difficulty level

Easy 9%
Moderate 91%

Duration

Less than 2 weeks 71%
2-4 weeks 18%
4-6 weeks 9%
6-8 weeks 3%
View more

Interview Questions from Similar Companies

Ginesys Interview Questions
3.8
 • 63 Interviews
BrowserStack Interview Questions
3.6
 • 50 Interviews
ZIGRAM Interview Questions
3.4
 • 39 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
RGBSI Interview Questions
3.3
 • 27 Interviews
LambdaTest Interview Questions
4.5
 • 26 Interviews
Fingent Interview Questions
4.2
 • 25 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
View all
Infiniti Software Solutions Software Trainee Salary
based on 9 salaries
₹2.5 L/yr - ₹5 L/yr
At par with the average Software Trainee Salary in India
View more details

Infiniti Software Solutions Software Trainee Reviews and Ratings

based on 16 reviews

5.0/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.8

Salary

4.9

Job security

4.9

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 16 Reviews and Ratings
Software Engineer
55 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Senior Software Engineer
36 salaries
unlock blur

₹4.6 L/yr - ₹10.4 L/yr

Software Developer
25 salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

Quality Analyst
23 salaries
unlock blur

₹2.2 L/yr - ₹5.3 L/yr

Business Analyst
9 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Infiniti Software Solutions with

Aurigo

4.7
Compare

Prime Focus Technologies

3.3
Compare

Peel-works

3.6
Compare

Yodlee

3.8
Compare
write
Share an Interview