Upload Button Icon Add office photos

Filter interviews by

Fintellix Solutions Interview Questions, Process, and Tips

Updated 22 Apr 2024

Top Fintellix Solutions Interview Questions and Answers

View all 29 questions

Fintellix Solutions Interview Experiences

Popular Designations

5 interviews found

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

I applied via campus placement at University of Mumbai, Mumbai and was interviewed in Sep 2023. There were 5 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 - Aptitude Test 

Round 1 : Aptitude Round (MCQs)
Time : 1.5 Hour

Consist of 3 Sections
1. Quant ( 40 Questions - 60 Minutes )
2. Verbal ( 10 Questions - 15 Minutes )
3. Pseudocode and Language Related Questions ( 10 Question - 15 Minutes )

Topics for Quant: Percentages, Profit & Loss, Speed Distance & Time, Clocks & Angles, Probability, Permutation & Combination, Number System, Simple & Compound Interest, Ratio & Proportion, Letter Series, Number Series, Ages, Blood Relations, Area & Volumes

Topics for Verbal: Paragraphs, Vocabulary, Grammer

Topics for Pseudocode MCQs: C++/Java, Syntax, Variables, Error identification, If-else conditions, for/while/do-while loops, Arrays, Strings, Arithmetic Operations, Bytes, Logical Operators.

Round 3 - Technical 

(25 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me about your projetcs
  • Q3. Explain your projects in detail
  • Q4. What was your role in projects ?
  • Q5. Rate yourself in Languages, Development & Databases on the scale of 5
  • Ans. 

    Languages - 4, Development - 3, Databases - 3

    • Proficient in Java and Python for development

    • Familiar with SQL for database management

    • Continuously learning new languages and technologies

  • Answered by AI
  • Q6. What is Object Oriented Programming?
  • Ans. 

    Object Oriented Programming 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.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Classes are used to create objects, which can have attributes (fields) and methods (functions).

    • Example: ...

  • Answered by AI
  • Q7. What are 4 pillars of OOP?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: Bundling data and methods that operate on the data into a single unit

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

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q8. Can you explain all 4 pillars in detail
  • Ans. 

    The 4 pillars refer to the key components of a consulting framework: problem solving, client management, team collaboration, and personal development.

    • Problem solving involves analyzing issues, developing solutions, and implementing strategies.

    • Client management focuses on building relationships, understanding needs, and delivering value.

    • Team collaboration requires effective communication, coordination, and leveraging di...

  • Answered by AI
  • Q9. What is Structured Query Language?
  • Ans. 

    Structured Query Language (SQL) is a standard language for managing and manipulating databases.

    • SQL is used to communicate with databases to perform tasks such as querying data, updating data, and creating databases.

    • It is a declarative language, meaning users specify what they want to retrieve or modify without needing to specify how to do it.

    • Common SQL commands include SELECT, INSERT, UPDATE, DELETE, CREATE, and DROP.

    • S...

  • Answered by AI
  • Q10. What are joints?
  • Q11. Explain all joints with examples
  • Q12. What is union? What is intersection?
  • Ans. 

    Union and intersection are set operations in mathematics.

    • Union of two sets includes all unique elements from both sets

    • Intersection of two sets includes only elements that are common to both sets

    • Example: Set A = {1, 2, 3} and Set B = {3, 4, 5}, Union of A and B = {1, 2, 3, 4, 5}, Intersection of A and B = {3}

  • Answered by AI
  • Q13. What is normalization ?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down data into smaller, more manageable tables

    • It helps in reducing data redundancy by storing data in a structured way

    • Normalization ensures data integrity by avoiding update anomalies

    • There are different normal forms like 1NF, 2NF, 3NF, and BCNF

    • Example: A customer table and an ord...

  • Answered by AI
  • Q14. How many forms of normalization are there?
  • Ans. 

    There are three forms of normalization in database design: 1NF, 2NF, and 3NF.

    • 1NF (First Normal Form) - Ensures that each column in a table contains atomic values. No repeating groups of columns are allowed.

    • 2NF (Second Normal Form) - Requires that the table is in 1NF and all non-key attributes are fully functional dependent on the primary key.

    • 3NF (Third Normal Form) - Builds on 2NF by ensuring that there are no transiti

  • Answered by AI
  • Q15. What is 1NF? (First Normal Form)
  • Ans. 

    1NF is the first step in database normalization where each column in a table contains only atomic values.

    • Each column in a table must contain only a single value

    • Values in a column must be of the same data type

    • Each column must have a unique name

    • Example: A table with columns for student ID, name, and address

  • Answered by AI
  • Q16. What is 2NF? (Second Normal Form)
  • Ans. 

    2NF is a database normalization form that ensures non-prime attributes are fully functionally dependent on the primary key.

    • In 2NF, a table is in 1NF and all non-key attributes are fully functionally dependent on the primary key.

    • It eliminates partial dependencies by moving non-prime attributes to a separate table.

    • For example, if we have a table with columns {Student ID, Course, Instructor}, where Course depends on Stude...

  • Answered by AI
  • Q17. How do we remove partial-dependency in 2NF?
  • Ans. 

    Partial dependency in 2NF can be removed by splitting the table into two separate tables.

    • Identify the attributes causing partial dependency in the table.

    • Create a new table with the partially dependent attributes along with the determinant attribute.

    • Link the new table to the original table using a foreign key.

    • Ensure each table now satisfies 2NF independently.

  • Answered by AI
  • Q18. What is 3NF? (3rd Normal Form)
  • Ans. 

    3NF is a database normalization technique that ensures data is stored in a table with no transitive dependencies.

    • Each non-prime attribute is non-transitively dependent on every super key.

    • Every non-prime attribute is fully functionally dependent on the primary key.

    • Helps in reducing data redundancy and improving data integrity.

    • Example: If a table has columns A, B, and C where B is functionally dependent on A, and C is fu...

  • Answered by AI
  • Q19. What are character functions?
  • Ans. 

    Character functions are functions in programming that manipulate individual characters within a string.

    • Character functions can be used to convert characters to uppercase or lowercase.

    • They can also be used to check if a character is a digit or a letter.

    • Examples include functions like toupper(), tolower(), isdigit(), isalpha().

  • Answered by AI
  • Q20. Explain any 2 character functions.
  • Ans. 

    Character functions are used to manipulate individual characters in a string.

    • toupper(): Converts a character to uppercase

    • tolower(): Converts a character to lowercase

  • Answered by AI
  • Q21. What are number functions?
  • Ans. 

    Number functions are mathematical operations that can be performed on numbers to manipulate or analyze data.

    • Number functions include addition, subtraction, multiplication, division, exponentiation, etc.

    • They can be used to perform calculations in various fields such as finance, engineering, and statistics.

    • Examples of number functions include finding the average of a set of numbers, calculating the square root, or determ

  • Answered by AI
  • Q22. Explain any 2 number functions.
  • Ans. 

    Number functions are mathematical operations that can be performed on numbers.

    • Two number functions include addition and subtraction.

    • Addition is the process of combining two or more numbers to get a total.

    • Subtraction is the process of taking one number away from another to find the difference.

  • Answered by AI
  • Q23. Write a SQL query to find MAXIMUM salary from the table.
  • Ans. 

    SQL query to find MAXIMUM salary from the table

    • Use the SELECT statement to retrieve data

    • Use the MAX() function to find the maximum salary

    • Specify the column name for salary in the query

  • Answered by AI
  • Q24. Write a SQL query to find SECOND MAXIMUM salary from the table.
  • Ans. 

    SQL query to find second maximum salary from a table.

    • Use the MAX function to find the highest salary

    • Use the WHERE clause to exclude the highest salary

    • Order the results in descending order and limit the output to 1

  • Answered by AI
  • Q25. Write a SQL query to create database with proper fields
  • Ans. 

    Create a SQL query to create a database with proper fields

    • Use CREATE DATABASE statement to create a new database

    • Specify the database name after CREATE DATABASE

    • Define the fields and their data types using CREATE TABLE statement

  • Answered by AI
Round 4 - Technical 

(9 Questions)

  • Q1. Introduce Yourself
  • Q2. What is Object Oriented Programming?
  • Ans. 

    Object Oriented Programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Encapsulation, inheritance, and polymorphism are key principles of OOP

    • Examples of OOP languages include Java, C++, and Python

  • Answered by AI
  • Q3. What are 4 pillars of OOP?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: Bundling data and methods that operate on the data into a single unit

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

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q4. What is Abstraction? explain it with pseudocode
  • Ans. 

    Abstraction is the process of hiding complex implementation details and showing only the necessary features of an object.

    • Abstraction allows us to focus on what an object does rather than how it does it.

    • It helps in reducing complexity and improving efficiency in software development.

    • Pseudocode example: abstract class Shape { abstract void draw(); }

    • In the example above, the Shape class is abstract and only defines th...

  • Answered by AI
  • Q5. What is Encapsulation? explain it with pseudocode
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation is achieved in object-oriented programming languages through the use of access specifiers like public, private, and prote...

  • Answered by AI
  • Q6. What is Inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

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

    • Promotes code reusability and reduces redundancy

    • Derived class can add its own unique attributes and methods

    • Examples: Parent class 'Animal' can have attributes like 'name' and methods like 'eat', and Child class 'Dog' can inherit th

  • Answered by AI
  • Q7. How many types of inheritance are there?
  • Ans. 

    There are 4 types of inheritance in object-oriented programming: single, multiple, multilevel, and hierarchical.

    • Single inheritance: a class inherits from only one base class.

    • Multiple inheritance: a class inherits from more than one base class.

    • Multilevel inheritance: a class inherits from a derived class, which in turn inherits from another class.

    • Hierarchical inheritance: multiple classes inherit from a single base clas

  • Answered by AI
  • Q8. Explain them in short.
  • Ans. 

    Explain them in short

    • Provide a concise explanation of a topic or concept

    • Avoid unnecessary details and focus on key points

    • Use clear and simple language to ensure understanding

  • Answered by AI
  • Q9. What is Polymorphism?
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
Round 5 - HR 

(10 Questions)

  • Q1. Tell me about yourself.
  • Q2. Do you know which role are interviewing for?
  • Q3. What will be your responsibilities as Associate Consultant?
  • Q4. Which is regulatory authority of India (Banks)?
  • Ans. 

    The regulatory authority of banks in India is the Reserve Bank of India (RBI).

    • Reserve Bank of India (RBI) is the central banking institution in India

    • RBI regulates the functioning of banks in India to ensure financial stability and prevent malpractices

    • It issues guidelines, policies, and regulations for banks to follow

  • Answered by AI
  • Q5. As you leave quite far from office? Will you be able to travel to office daily?
  • Q6. Will you get bored if you work on same technology for a while?
  • Q7. Are you willing to take different roles after some time?
  • Q8. Tell me about your family background
  • Q9. Do you have any plans for Higher Education / Master?
  • Q10. Do you have any questions?

Interview Preparation Tips

Topics to prepare for Fintellix Solutions Associate Consultant interview:
  • SQL
  • OOPS
  • C++
  • Java
Interview preparation tips for other job seekers - Shortlisting for Aptitude Round was purely based on CGPA. So try to maintain high CGPA if you want to get shortlisted even for Aptitude Round.

Prepare Aptitude Questions very well. There will be fixed cut-off of 65-50%. Focus on accuracy and speed.

Prepare OOP, SQL (deep) for Technical Rounds

Skills evaluated in this interview

Top Fintellix Solutions Associate Consultant Interview Questions and Answers

Q1. How many forms of normalization are there?
View answer (1)

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Core java, Spring , Hibernate, JS, JSP, Springboot, management skills , leadership
Round 3 - One-on-one 

(1 Question)

  • Q1. Situational questions, managerial responsibility related question

Software Development Manager Interview Questions asked at other Companies

Q1. Is it better to have one monolithic application instead of several micro services in terms of resources?
View answer (1)

Consultant Interview Questions & Answers

user image Anonymous

posted on 22 Apr 2024

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

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Pl/sql and informatica

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare sql well

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Describe the Credit Product
  • Ans. 

    Credit product is a financial product that allows consumers to borrow money with the promise to repay it in the future.

    • Credit products can include credit cards, personal loans, mortgages, and lines of credit.

    • Interest rates and repayment terms vary depending on the type of credit product.

    • Credit products are typically offered by banks, credit unions, and other financial institutions.

    • Consumers must meet certain criteria, ...

  • Answered by AI

Lead Business Analyst Interview Questions asked at other Companies

Q1. What is Counterparty Credit Risk? What is CVA and how is it calculated?
View answer (1)

Fintellix Solutions interview questions for popular designations

 Analyst

 (1)

 Associate Consultant

 (1)

 Consultant

 (1)

 Lead Business Analyst

 (1)

 Software Development Manager

 (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 27 Dec 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions on database concepts
Round 3 - Technical 

(1 Question)

  • Q1. Scenario based questions

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

Interview questions from similar companies

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

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Why are you interested in the role
  • Ans. 

    I am passionate about driving organizational effectiveness and employee engagement through strategic HR initiatives.

    • I have a strong background in HR strategy and business partnering

    • I enjoy collaborating with cross-functional teams to drive positive change

    • I am excited about the opportunity to make a meaningful impact on the organization's culture and performance

  • Answered by AI
  • Q3. Talking about Intersted in which things that do in free time

Interview Preparation Tips

Interview preparation tips for other job seekers - Recently, I had an interview experience that felt unprofessional. I was assured I was one of two shortlisted candidates for a role and encouraged to attend. After waiting for over 30 minutes, the HR representative finally conducted the interview but was dressed in casual nightwear, which left a poor impression. Such behavior from an HR professional does not reflect well on the company. I suggest researching thoroughly before investing your time and effort with organizations that may not prioritize professionalism in their recruitment process.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. How would you utilize AWS or Azure services to create scalable web applications
  • Ans. 

    Utilize AWS or Azure services for scalable web applications

    • Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling

    • Leverage AWS Lambda or Azure Functions for serverless computing

    • Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic

    • Store data in AWS RDS or Azure SQL Database for scalable database solutions

    • Use AWS CloudFront or Azure CDN for content delivery

  • Answered by AI
  • Q2. How would you tackle memory leaks if the system your working on was experiencing this issue?
  • Ans. 

    I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.

    • Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks

    • Review the code to ensure proper memory allocation and deallocation practices are being followed

    • Implement smart pointers or garbage collection to automatically manage memory

    • Use static co...

  • Answered by AI
  • Q3. Have you worked on legacy systems?
  • Ans. 

    Yes, I have experience working on legacy systems.

    • I have successfully maintained and upgraded legacy systems to meet current business needs.

    • I have refactored legacy code to improve performance and scalability.

    • I have integrated new technologies with legacy systems to enhance functionality.

    • I have experience troubleshooting and debugging issues in legacy systems.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Are you capable to work with cross functional teams and handle disputes effectively
  • Ans. 

    Yes, I have experience working with cross functional teams and resolving disputes effectively.

    • I have successfully collaborated with team members from different departments to achieve project goals.

    • I am skilled at mediating conflicts and finding mutually beneficial solutions.

    • I prioritize open communication and actively listen to all team members' perspectives.

    • I have experience using conflict resolution techniques such a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and on to point without deviations, they respect straight forwardness
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basically It is a list of 25 questions having mix of Resoning,Aptitude &English. Each Queztion carries 2 marks and also there was a plus point that it doesn't have any negative marks

Round 2 - Technical 

(1 Question)

  • Q1. Basically it is about the Technical Subjects that U mention eariler in your coresponding CV's. Whatever Subject you meantioned their gonna answer about it for tge questions regarding to that subject
Round 3 - HR 

(14 Questions)

  • Q1. Brief Description about Youself
  • Q2. What is your goal in Life
  • Q3. What do you know about tgis job Profile
  • Q4. Why should we hire you instead of all achoknowledgable freshers sitting behind for this job role ?
  • Q5. What are ur hobbies and strengths and weeknesses
  • Q6. Why you want to do this job role
  • Q7. Why you want to join us instead of other good companies.
  • Q8. How you balance yourself in a fatal situation
  • Q9. If you alredy working under a company but want to switch it then the questions will remain same but just add some 2 to 3 extra questions like i am meantioning it down👇
  • Q10. What was ur job profile
  • Q11. How do u know about our company
  • Q12. Did u Resign by ur own or The comapny Resign you ??
  • Q13. What was ur salary their
  • Q14. Incase u alredy have an experience in a better company then interviewer ask this -* why joing us instead u have an magnificent well role on your comapny*

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Ofcourse if you are not confident you will get rejected. Because Interviewer asks the 4x questions who has lack of Confidence to broke them to fear .You sbould get rid of that.

2. And Always balance ur words like what u going to say ,read the mind of the interviewer. (ofcourse it take practices)

3.As like our older says "Stand infront of the mirror and start saying about you, define yourself to you, what r u, why r u, how u gonna work this, everything" This'll burn the fear inside you.

4. Don't get Upset if u can not make to a comapny and instead of doing excuses about the company or HR's question, U should work hard on yourself gathering previous mistakes and make to the better comapny

5.And always follow the laws and well prepare your responsibilities.
Thats all Advice i can gave.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

They asked you to automate a complete URL end to end testing

Round 2 - Technical 

(2 Questions)

  • Q1. Basic question asked on the coding that you have used in your project
  • Q2. CORE JAVA Concept
Round 3 - Technical 

(2 Questions)

  • Q1. Focused on your project will ask you about your previous project
  • Q2. Some coding question like finding repeatative string etc
Round 4 - HR 

(1 Question)

  • Q1. Asked you about generic questions like your hobby your strength, weakness, what are the things that you have achieved
Round 5 - Behavioral 

(1 Question)

  • Q1. A general discussion with the CEO. Very understanding will ask you some general question same why you wanna work with them and all.

Fintellix Solutions Interview FAQs

How many rounds are there in Fintellix Solutions interview?
Fintellix Solutions interview process usually has 2-3 rounds. The most common rounds in the Fintellix Solutions interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Fintellix Solutions 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 Fintellix Solutions. The most common topics and skills that interviewers at Fintellix Solutions expect are Administrative Support, Business Development, Calendar Management, Communication Management and Enterprise Sales.
What are the top questions asked in Fintellix Solutions interview?

Some of the top questions asked at the Fintellix Solutions interview -

  1. How many forms of normalization are the...read more
  2. How do we remove partial-dependency in 2...read more
  3. What is Abstraction? explain it with pseudoc...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Nelito System Interview Questions
3.5
 • 23 Interviews
View all

Fast track your campus placements

View all

Fintellix Solutions Reviews and Ratings

based on 46 reviews

3.9/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.2

Salary

3.5

Job security

3.6

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 46 Reviews and Ratings
Sales Specialist (SaaS)

Mumbai

2-6 Yrs

₹ 10-20 LPA

CEO Office Associate

Bangalore / Bengaluru

0-3 Yrs

₹ 3-7.5 LPA

Explore more jobs
Product Consultant
37 salaries
unlock blur

₹4.2 L/yr - ₹8.7 L/yr

Associate Consultant
32 salaries
unlock blur

₹5 L/yr - ₹6.8 L/yr

Consultant
32 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Senior Consultant
26 salaries
unlock blur

₹9 L/yr - ₹18.4 L/yr

Software Engineer
23 salaries
unlock blur

₹4.8 L/yr - ₹9.2 L/yr

Explore more salaries
Compare Fintellix Solutions with

Intellect Design Arena

4.1
Compare

Nelito System

3.5
Compare

Nucleus Software Exports

3.5
Compare

TCS

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