Upload Button Icon Add office photos
Engaged Employer

i

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

Filter interviews by

Quantiphi Analytics Solutions Private Limited Software Developer Interview Questions and Answers

Updated 11 Jan 2025

Quantiphi Analytics Solutions Private Limited Software Developer Interview Experiences

11 interviews found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. REST API for User CRUD
  • Ans. 

    Design a RESTful API for CRUD operations on user resources.

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Create endpoints like /users for listing all users, /users/{id} for specific user

    • Use status codes like 200 for success, 404 for not found, 400 for bad request

    • Implement authentication and authorization mechanisms for security

    • Include request and response body formats like JSON or XML

  • Answered by AI
  • Q2. Two Sum Leetcode problem
  • Q3. Basic questions based on the candidate technical skills
Round 2 - Technical 

(2 Questions)

  • Q1. Basics to Intermediate level of questions based on the skills mentioned in the resume
  • Q2. Projects related discussions
Round 3 - Document Verification 

(1 Question)

  • Q1. I was informed to upload the supporting documents. ( They rejected me after this eventhough all my documents are genuine )

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer's are friendly. Be prepared as per your resume.

Skills evaluated in this interview

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

There were easy to medium dsa questions

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept, explain each of them
  • Ans. 

    Object-oriented programming concepts that help in organizing and structuring code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allowing 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 ...

  • Answered by AI
  • Q2. Multithreading questions

Software Developer Interview Questions & Answers

user image Sunidhi Thakur

posted on 16 Aug 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Was tough but can be cracked in one go

Round 2 - Coding Test 

Easy to moderate need to study dsa

Round 3 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Tell me about your projects
  • Ans. 

    I have worked on various projects including a web application for a healthcare company and a mobile app for a retail business.

    • Developed a web application for a healthcare company to manage patient records and appointments

    • Created a mobile app for a retail business to enhance customer shopping experience

    • Implemented features such as user authentication, data visualization, and real-time updates

    • Utilized technologies like R...

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

78 mcq questions and 2 dsa

Round 2 - Coding Test 

Coding based round on dsa

Software Developer Interview Questions & Answers

user image Anil Vaddina

posted on 20 Oct 2023

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

I applied via Campus Placement and was interviewed in Apr 2023. There were 4 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 - Aptitude Test 

General apti questions and coding

Round 3 - Technical 

(1 Question)

  • Q1. Sql , rdbms, projects
Round 4 - HR 

(1 Question)

  • Q1. Hr Questions and projects discussion

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Software Developer interview:
  • Python
  • SQL
  • DBMS
Interview preparation tips for other job seekers - A big no for anyone who want to join , they hire more and keep people on hold for months.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal MCQ questions on JS

Round 2 - Coding Test 

Write a program to use debouncing in frontend

Round 3 - HR 

(2 Questions)

  • Q1. Behavioural questions
  • Q2. Why this company and why you?
  • Ans. 

    I am passionate about the company's innovative projects and believe my skills align well with the team's goals.

    • I have been following the company's work closely and am impressed by their commitment to cutting-edge technology.

    • I believe my experience in software development, particularly in the areas of machine learning and AI, would be a valuable addition to the team.

    • I am excited about the opportunity to work with a tale...

  • Answered by AI

Software Developer Interview Questions & Answers

user image Mansi Nagaria

posted on 9 Dec 2022

I applied via Campus Placement and was interviewed in Jun 2022. There were 4 interview rounds.

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 - Coding Test 

Basic dsa plus aptitude total of 50 ques

Round 3 - Technical 

(1 Question)

  • Q1. Array and array matrix coding question and some logical question
Round 4 - HR 

(1 Question)

  • Q1. Noarmal hr question and then some logical tricky question , situation based question

Interview Preparation Tips

Interview preparation tips for other job seekers - logical question read throughly plus dsa question were not that hard
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 - One-on-one 

(2 Questions)

  • Q1. What is treeset and weakhashmap?
  • Ans. 

    TreeSet is a sorted set implementation in Java. WeakHashMap is a hash table-based Map implementation with weak keys.

    • TreeSet is implemented using a tree structure and maintains elements in sorted order.

    • WeakHashMap is a Map implementation that allows keys to be garbage collected when they are no longer referenced.

    • WeakHashMap is useful for caching or memoization where the keys are not always needed and can be garbage coll...

  • Answered by AI
  • Q2. What is comparable and comparator?
  • Ans. 

    Comparable and Comparator are interfaces used for sorting objects in Java.

    • Comparable interface is used to define the natural ordering of objects based on their own class.

    • Comparator interface is used to define the ordering of objects based on a separate class.

    • Comparable interface has compareTo() method while Comparator interface has compare() method.

    • Comparable interface is implemented by the class whose objects need to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly they asked questions based on core java springboot

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It's mainly Python and Java based, also aptitude here and there

Round 2 - Coding Test 

They ask you about your previous projects and also one basic coding question, I was asked to count the frequency of words in a sentence. One SQL question was also asked.

I applied via Campus Placement and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Fundamentals based upon the role
Round 2 - Technical 

(1 Question)

  • Q1. Basic advance question into the technical skills like if you’re applying for backend role and your preferred language is java then how does the stack and queue works

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Software Developer interview:
  • Javascript
  • promises
  • Timing Closure
  • React.Js
  • Router
  • axios
  • crud operations
Interview preparation tips for other job seekers - You can enhance your technical skills while working but what they Check is your logic and approach towards the problem

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Quantiphi Analytics Solutions Private Limited?
Ask anonymously on communities.

Quantiphi Analytics Solutions Private Limited Interview FAQs

How many rounds are there in Quantiphi Analytics Solutions Private Limited Software Developer interview?
Quantiphi Analytics Solutions Private Limited interview process usually has 2-3 rounds. The most common rounds in the Quantiphi Analytics Solutions Private Limited interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Quantiphi Analytics Solutions Private Limited Software Developer 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 Quantiphi Analytics Solutions Private Limited. The most common topics and skills that interviewers at Quantiphi Analytics Solutions Private Limited expect are Python, Front End, Javascript, SQL and Agile.
What are the top questions asked in Quantiphi Analytics Solutions Private Limited Software Developer interview?

Some of the top questions asked at the Quantiphi Analytics Solutions Private Limited Software Developer interview -

  1. What is comparable and comparat...read more
  2. What is treeset and weakhashm...read more
  3. oops concept, explain each of t...read more
How long is the Quantiphi Analytics Solutions Private Limited Software Developer interview process?

The duration of Quantiphi Analytics Solutions Private Limited Software Developer 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

3.9/5

based on 8 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 83%
4-6 weeks 17%
View more
Quantiphi Analytics Solutions Private Limited Software Developer Salary
based on 171 salaries
₹8.1 L/yr - ₹14.2 L/yr
7% more than the average Software Developer Salary in India
View more details

Quantiphi Analytics Solutions Private Limited Software Developer Reviews and Ratings

based on 32 reviews

3.2/5

Rating in categories

3.3

Skill development

2.9

Work-life balance

3.2

Salary

2.7

Job security

3.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 32 Reviews and Ratings
Architect - Software Development

Mumbai,

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Architect - Software Development & Product

Mumbai,

Bangalore / Bengaluru

+1

10-15 Yrs

Not Disclosed

Explore more jobs
Data Engineer
521 salaries
unlock blur

₹6.4 L/yr - ₹15.2 L/yr

Senior Data Engineer
450 salaries
unlock blur

₹12.3 L/yr - ₹23.5 L/yr

Senior Business Analyst
365 salaries
unlock blur

₹12.4 L/yr - ₹22 L/yr

Machine Learning Engineer
327 salaries
unlock blur

₹5.5 L/yr - ₹13.4 L/yr

Business Analyst
325 salaries
unlock blur

₹6.5 L/yr - ₹14 L/yr

Explore more salaries
Compare Quantiphi Analytics Solutions Private Limited with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

3.4
Compare
write
Share an Interview