Upload Button Icon Add office photos

Filter interviews by

AIMonk Interview Questions and Answers

Updated 10 Dec 2024

AIMonk Interview Experiences

Popular Designations

4 interviews found

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

I was interviewed in Oct 2024.

Round 1 - Assignmentย 

We were asked to created an application on local system using yolo for object detection and use container as well.

Round 2 - Technicalย 

(4 Questions)

  • Q1. Decorators in python
  • Ans. 

    Decorators in Python are functions that modify the behavior of other functions.

    • Decorators are defined using the @decorator_name syntax before a function definition.

    • They can be used to add functionality to existing functions without modifying their code.

    • Common use cases include logging, timing, and access control.

    • Example: @staticmethod decorator in Python makes a method static.

  • Answered by AI
  • Q2. Dropout, batch normalization
  • Q3. Ensemble methods
  • Q4. Tensorflow basic questions were asked. About custom model and custom dataset.

Skills evaluated in this interview

Machine Learning Engineer Interview Questions asked at other Companies

Q1.ย Subset Sum Equal To KYou are given an array/list โ€˜ARRโ€™ of โ€˜Nโ€™ positive integers and an integer โ€˜Kโ€™. Your task is to check if there exists a subset in โ€˜ARRโ€™ with a sum equal to โ€˜Kโ€™. Note: Return true if there exists a subset with sum equal t... read more
View answer (3)

Data Analyst Interview Questions & Answers

user image Siddharth Pandey

posted on 10 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technicalย 

(2 Questions)

  • Q1. What is accuracy in ml
  • Ans. 

    Accuracy in machine learning measures how often the model makes correct predictions.

    • Accuracy is the ratio of correctly predicted instances to the total instances in the dataset.

    • It is a common evaluation metric for classification models.

    • Accuracy can be calculated using the formula: (TP + TN) / (TP + TN + FP + FN), where TP = True Positives, TN = True Negatives, FP = False Positives, FN = False Negatives.

    • For example, if ...

  • Answered by AI
  • Q2. What is recall in ml
  • Ans. 

    Recall is a metric in machine learning that measures the ability of a model to find all relevant cases within a dataset.

    • Recall is calculated as the ratio of true positive cases to the sum of true positive and false negative cases.

    • It is also known as sensitivity or true positive rate.

    • A high recall value indicates that the model is good at identifying all relevant cases, even if it means more false positives.

    • For example,...

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions asked at other Companies

Q1.ย Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 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. Basics in python
  • Q2. Basic and advanced concepts in ML

Machine Learning Engineer Interview Questions asked at other Companies

Q1.ย Subset Sum Equal To KYou are given an array/list โ€˜ARRโ€™ of โ€˜Nโ€™ positive integers and an integer โ€˜Kโ€™. Your task is to check if there exists a subset in โ€˜ARRโ€™ with a sum equal to โ€˜Kโ€™. Note: Return true if there exists a subset with sum equal t... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed before Apr 2023.

Round 1 - Assignmentย 

Assignment given to you over mail.

Round 2 - Coding Testย 

Python basic coding test

Round 3 - Technicalย 

(1 Question)

  • Q1. Technical indepth machine learning theory question related to project done in your past company

Machine Learning Engineer Interview Questions asked at other Companies

Q1.ย Subset Sum Equal To KYou are given an array/list โ€˜ARRโ€™ of โ€˜Nโ€™ positive integers and an integer โ€˜Kโ€™. Your task is to check if there exists a subset in โ€˜ARRโ€™ with a sum equal to โ€˜Kโ€™. Note: Return true if there exists a subset with sum equal t... read more
View answer (3)

AIMonk interview questions for popular designations

ย Machine Learning Engineer

ย (3)

ย Data Analyst

ย (1)

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Aptitude Testย 

-Basic Accounting questions like simple journals , Accounting principles and concepts.
-Basic Excel tasks like questions (commonly used simple formulas ,chart preparation, pivot tables
etc,)
-Email writing.
-Simple Aptitude and Logical Reasoning questions.
Prepare well and try to attend maximum questions with better accuracy. Overall aptitude test is simple.

Round 2 - Technicalย 

(9 Questions)

  • Q1. Tell me About Yourself
  • Q2. What is an Accrual Concept
  • Q3. Difference between Deferral and Accrual accounting
  • Q4. Journal entries for Accrual and Deferral transactions
  • Q5. What is a Bank Reconciliation and how to process it
  • Q6. Difference between Depreciation and Amortization
  • Q7. Difference between Provisions and Contingent
  • Q8. Bad debts journal entries
  • Q9. Other normal questions based on Resume like internships and educational qualifications and about year gap ; And also availability to WFO and to work in any shifts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay positive and answer boldly. Be well prepared with the basics. I brushed up the basic accounting before interview which helped me a lot. Even though my english communication was not that good, my way of answering in the technical round helped me to get selected.
In Aptitude round try to answer more questions also with better accuracy.
All the best guys.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Testย 

20 - MCQ test related C&C++ basic to advance
2 - coding questions -
1) create class which allows only one instance creation at a time if you try to create another before deleting existing object then class should throw exception..

2) find the distance between leftmost string and rightmost string(string's chars order doesn't matter) In a given long shuffled string.
Ex :-
Shuffled string = "xaxxcxbxxxcxxaxxbx"
target string= "abc"
Ans: 3
(Leftmost string is last index 6
Right most is 9 so 9-6=3)
Note:- other chars not necessarily 'x' it can be any

Round 2 - Technicalย 

(10 Questions)

  • Q1. Explain oops concepts
  • Q2. Runtime polymorphism with example
  • Q3. Vtable and Vptr working
  • Q4. Abstraction and pure virtual function
  • Q5. Smart pointers
  • Q6. Implementation of STL libraries any container class ex:- Vector
  • Q7. Singleton class creation (code) what is use of it ?
  • Q8. SQL simple questions
  • Q9. What is the use of Mutex
  • Q10. Be strong in theoretically (why, what when to use the concept)

Interview Preparation Tips

Interview preparation tips for other job seekers - Skill has value here have strong knowledge of core concepts
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technicalย 

(2 Questions)

  • Q1. They asked me regarding project
  • Q2. Sql queries and data bricks related questions
Round 2 - Technicalย 

(1 Question)

  • Q1. Details explaination on project that I have worked and optimization techniques

Interview Preparation Tips

Interview preparation tips for other job seekers - I have successfully cleared the L1 and L2 rounds, and my background verification has also been completed. I was informed that an offer would be sent the next day. However, the HR then stated that there would be a discussion solely about the CTC, with no technical questions involved. I agreed to this; yet, the interviewer proceeded to ask high-level technical questions that I had not worked on, leading to the final decision of not selecting me. It felt like a fake interview process, accompanied by delayed communication and a lack of response, resulting in a very negative experience with Tech Mahindra.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024.ย There were 13 interview rounds.

Round 1 - Technicalย 

(2 Questions)

  • Q1. What is the Entity-Relationship (ER) model?
  • Ans. 

    The Entity-Relationship (ER) model is a data model used to describe the relationships between entities in a database.

    • Entities are objects or concepts in the real world that can be distinguished from each other.

    • Relationships describe how entities are related to each other.

    • Attributes are properties that describe entities and relationships.

    • ER diagrams visually represent the ER model, showing entities, relationships, and a...

  • Answered by AI
  • Q2. What are the advantages of using threads compared to processes?
  • Ans. 

    Threads are lighter weight than processes, share memory space, and are more efficient for multitasking.

    • Threads share the same memory space, making communication between them faster and more efficient.

    • Threads are lighter weight than processes, as they share resources such as memory and file descriptors.

    • Threads are more efficient for multitasking, as they can run concurrently within the same process.

    • Threads are easier to...

  • Answered by AI
Round 2 - Coding Testย 

Google primarily focuses on pure data structures and algorithms-based questions during coding interviews. Other computer science core topics are typically not covered in Google's interviews. Therefore, it is essential to be proficient in data structures and algorithms to succeed in the Google coding interview.

Round 3 - Aptitude Testย 

An aptitude test is a tool used to evaluate a person's skills, abilities, and potential for success in a specific role or activity.

Round 4 - Group Discussionย 

Group discussion is a process of exchanging ideas and opinions among individuals on a specific topic. It is a structured form of communication in which participants have the opportunity to express their views while also listening to others' perspectives on the same subject.

Round 5 - HRย 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include time management and public speaking.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: time management

    • Weaknesses: public speaking

  • Answered by AI
  • Q2. What reasons can you provide for why we should consider hiring you?
  • Ans. 

    I have a strong foundation in web development, a passion for learning, and a proven track record of delivering high-quality projects.

    • I have a solid understanding of HTML, CSS, and JavaScript

    • I am proficient in using various web development tools and frameworks such as React and Node.js

    • I have successfully completed several web development projects, including a responsive e-commerce website for a local business

  • Answered by AI
Round 6 - Assignmentย 

An assignment is a task or piece of work that you are given to complete, particularly as part of your job or studies. The assignment for the course includes written assignments and practical tests, similar to tasks, work, jobs, or charges.

Round 7 - Case Studyย 

A case study is a detailed description and assessment of a specific situation in the real world, created for the purpose of deriving generalized insights and understanding. It can focus on an individual, a group of people, an organization, or an event, among other subjects.

Round 8 - One-on-oneย 

(2 Questions)

  • Q1. What do you consider your greatest accomplishment?
  • Ans. 

    My greatest accomplishment was successfully leading a team to launch a new website for a major client ahead of schedule.

    • Successfully led a team to launch a new website

    • Completed the project ahead of schedule

    • Received positive feedback from the client

  • Answered by AI
  • Q2. What factors motivate you in your professional life?
  • Ans. 

    I am motivated by challenges, learning opportunities, and the ability to make a positive impact.

    • Challenges push me to grow and improve my skills.

    • Learning opportunities allow me to stay updated with the latest technologies and trends.

    • Making a positive impact through my work gives me a sense of fulfillment and purpose.

  • Answered by AI
Round 9 - HRย 

(2 Questions)

  • Q1. What does your ideal work environment look like?
  • Ans. 

    My ideal work environment is a collaborative space with supportive colleagues, opportunities for growth, and a healthy work-life balance.

    • Collaborative team environment where ideas are shared and valued

    • Supportive colleagues who are willing to help and provide feedback

    • Opportunities for growth and learning new technologies

    • Healthy work-life balance with flexible hours and remote work options

  • Answered by AI
  • Q2. How would you impact employee retention?
  • Ans. 

    By creating a positive work environment, offering growth opportunities, and implementing employee recognition programs.

    • Creating a positive work environment through open communication and support

    • Offering growth opportunities such as training programs and career advancement

    • Implementing employee recognition programs to acknowledge and reward hard work

    • Providing competitive salaries and benefits to attract and retain top ta

  • Answered by AI
Round 10 - Technicalย 

(2 Questions)

  • Q1. What are real-time operating systems?
  • Ans. 

    Real-time operating systems are designed to provide predictable response times and prioritize tasks based on timing constraints.

    • Real-time operating systems prioritize tasks based on timing constraints

    • They are designed to provide predictable response times

    • Examples include VxWorks, QNX, and FreeRTOS

  • Answered by AI
  • Q2. Are the applicants first asked several questions regarding data structures and algorithms?
Round 11 - HRย 

(2 Questions)

  • Q1. What topics are typically discussed during the final round of interviews, particularly regarding salary expectations, working hours, and other job requirements?
  • Q2. Are you comfortable working night shifts, considering that many roles at Genpact support international clients?
  • Ans. 

    Yes, I am comfortable working night shifts to support international clients.

    • I have previous experience working night shifts in a customer service role.

    • I am a night owl and tend to be more productive during late hours.

    • I understand the importance of supporting international clients and am willing to adjust my schedule accordingly.

  • Answered by AI
Round 12 - Process associateย 

(2 Questions)

  • Q1. A process associate is crucial in ensuring the smooth operation of various business processes across different industries
  • Q2. What are the operational tasks necessary to maintain efficiency and quality?
  • Ans. 

    Operational tasks for maintaining efficiency and quality include regular testing, monitoring performance, updating software, and implementing best practices.

    • Regularly test website functionality to ensure it is working properly

    • Monitor website performance metrics such as load times and user experience

    • Update software and plugins to the latest versions to prevent security vulnerabilities

    • Implement best practices for coding,

  • Answered by AI
Round 13 - Mangerย 

(2 Questions)

  • Q1. How can you prepare examples demonstrating your leadership, conflict resolution, and prioritization skills to excel in a managerial round interview?
  • Ans. 

    Prepare examples showcasing leadership, conflict resolution, and prioritization skills for a managerial round interview.

    • Leadership: Discuss a project where you led a team to success, highlighting your ability to motivate and guide others.

    • Conflict Resolution: Share a situation where you successfully resolved a conflict within a team or project, emphasizing your communication and problem-solving skills.

    • Prioritization: Ta...

  • Answered by AI
  • Q2. How do you demonstrate adaptability, leadership, and a commitment to fostering a positive work environment?
  • Ans. 

    I demonstrate adaptability, leadership, and commitment by actively seeking feedback, taking on new challenges, and fostering collaboration within the team.

    • Seek feedback from colleagues and supervisors to continuously improve

    • Volunteer for new projects or tasks to expand skills and knowledge

    • Encourage open communication and teamwork among team members

    • Lead by example by showing a positive attitude and willingness to help o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Update your resume, customize your application, and be ready to show kindness.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technicalย 

(2 Questions)

  • Q1. Azure cloud platform tech
  • Q2. Informatica tech stack ques
Round 2 - Technicalย 

(2 Questions)

  • Q1. Adf tech stack que
  • Q2. Scd type 2 implementation
  • Ans. 

    SCD Type 2 implementation involves tracking historical changes in data by creating new records for each change.

    • Identify the columns that need to be tracked for changes

    • Add effective start and end dates to track the validity of each record

    • Insert new records for changes and update end dates for previous records

    • Maintain a surrogate key to uniquely identify each version of the record

  • Answered by AI
Round 3 - Technicalย 

(2 Questions)

  • Q1. Dw related que ans
  • Q2. Solution design related que
Round 4 - HRย 

(2 Questions)

  • Q1. Aspiration from my end
  • Q2. How soon can join
  • Ans. 

    I can join the team within 2 weeks.

    • I can start within 2 weeks of receiving the offer.

    • I need to give notice to my current employer.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join or even I would suggest not to apply or give interview to this pathetic company. I have cleared all my 4 rounds of interview including HR out of which 3 technical and 1 HR. 3 held on video conferencing and one face to face for which I have travelled almost 40 kms from my current location and they said without face to face they cannot proceed hence I had no option left but to travel, then when I entered into the office again put a laptop infront of me which is again video conferencing then I didn't understand why exactly they called me if they want to have it over video online.

Then after putting my lot of time and efforts when finally it comes to release the offer, then they stop picking up the calls and stop responding and the final excuses which I got from them for not releasing the offer is that their software will not allow them to release any offer which is more that 2 days of joining.

Such a pathetic company who even don't know that atleast if you are not releasing the offer, it's your duty to atleast tell the person that either they are not able to provide the compensation as discussed or they are looking parallelly for someone who can settle in less compensation.

Due to all this I have wasted almost my 3-4 weeks of time expecting that I will receive the offer, and didn't focus on other organisations which was ready to provide slightly lower than this.

Hence it's a total scam which is going here suggesting not to get trapped otherwise you will not only waste your time but also other good opportunities as well.

It's a total boycott for me, expecting the same from your end as well, so that they will understand that playing with someone's job is not a joke.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Testย 

For example, a โ‚น10 LPA CTC could mean an in-hand salary of โ‚น70,000โ€“โ‚น75,000 per month, depending on deductions and benefits.

โœจ ๐—ฃ๐—ฟ๐—ผ ๐—ง๐—ถ๐—ฝ: Always request a detailed salary structure during negotiationsโ€”itโ€™s your roadmap to making informed decisions

Round 2 - Coding Testย 

๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder

Round 3 - Technicalย 

(2 Questions)

  • Q1. 2๏ธโƒฃ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: This is the actual amount you take home after deductions like: โ€ข Employeeโ€™s contribution to PF โ€ข Income tax (TDS) โ€ข Professional tax
  • Q2. ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€! Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressi...

Interview Preparation Tips

Interview preparation tips for other job seekers - ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder:

โ€œ๐˜ž๐˜ฉ๐˜บ ๐˜ฅ๐˜ฐ๐˜ฆ๐˜ด๐˜ฏโ€™๐˜ต ๐˜ฎ๐˜บ ๐˜ช๐˜ฏ-๐˜ฉ๐˜ข๐˜ฏ๐˜ฅ ๐˜ด๐˜ข๐˜ญ๐˜ข๐˜ณ๐˜บ ๐˜ฎ๐˜ข๐˜ต๐˜ค๐˜ฉ ๐˜ต๐˜ฉ๐˜ฆ ๐˜Š๐˜›๐˜Š ๐˜ ๐˜ธ๐˜ข๐˜ด ๐˜ฑ๐˜ณ๐˜ฐ๐˜ฎ๐˜ช๐˜ด๐˜ฆ๐˜ฅ?โ€

AIMonk Interview FAQs

How many rounds are there in AIMonk interview?
AIMonk interview process usually has 2 rounds. The most common rounds in the AIMonk interview process are Technical, Assignment and Resume Shortlist.
How to prepare for AIMonk 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 AIMonk. The most common topics and skills that interviewers at AIMonk expect are Artificial Intelligence, Computer Vision, Javascript, MongoDB and Python.
What are the top questions asked in AIMonk interview?

Some of the top questions asked at the AIMonk interview -

  1. what is accuracy in...read more
  2. what is recall in...read more
  3. Decorators in pyt...read more

Tell us how to improve this page.

AIMonk Interview Process

based on 3 interviews in last 1 year

Interview experience

4.3
ย ย 
Good

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.7
ย โ€ขย 223 Interviews
Tiger Analytics Interview Questions
3.7
ย โ€ขย 216 Interviews
Fractal Analytics Interview Questions
4.0
ย โ€ขย 202 Interviews
Tredence Interview Questions
3.6
ย โ€ขย 122 Interviews
LatentView Analytics Interview Questions
3.7
ย โ€ขย 62 Interviews
AbsolutData Interview Questions
3.6
ย โ€ขย 9 Interviews
Algonomy Interview Questions
3.9
ย โ€ขย 9 Interviews
Bridgei2i Analytics Solutions Interview Questions
3.8
ย โ€ขย 8 Interviews
Analyttica Datalab Interview Questions
3.4
ย โ€ขย 4 Interviews
Crayon Data Interview Questions
3.6
ย โ€ขย 4 Interviews
View all

AIMonk Reviews and Ratings

based on 6 reviews

4.3/5

Rating in categories

4.2

Skill development

4.0

Work-life balance

3.7

Salary

3.9

Job security

3.7

Company culture

3.7

Promotions

4.0

Work satisfaction

Explore 6 Reviews and Ratings
Software Development Engineer
4 salaries
unlock blur

โ‚น6.3 L/yr - โ‚น14 L/yr

Machine Learning Engineer
4 salaries
unlock blur

โ‚น6 L/yr - โ‚น18 L/yr

Machine Learning Intern
4 salaries
unlock blur

โ‚น1 L/yr - โ‚น18 L/yr

Explore more salaries
Compare AIMonk with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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