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 Senior Platform Engineer Interview Questions and Answers

Updated 23 Oct 2024

Quantiphi Analytics Solutions Private Limited Senior Platform Engineer Interview Experiences

4 interviews found

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

(1 Question)

  • Q1. All cloud questions
Round 2 - Technical 

(1 Question)

  • Q1. All cloud questions
Round 3 - HR 

(1 Question)

  • Q1. All about team work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Aws vpc, subnet, and basic resource knowledge
Round 2 - HR 

(1 Question)

  • Q1. Generic discussion

Senior Platform Engineer Interview Questions Asked at Other Companies

asked in Capgemini
Q1. How can you obtain input from a collection in Power Apps to use i ... read more
Q2. What is the main difference in docker swarm and Kubernates
Q3. Zig zag traversal of tree All permutation and combination of numb ... read more
asked in Capgemini
Q4. How to create relationships in dataverse
asked in MontyCloud
Q5. What are the types of SQS?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain Kubernates Architecture
  • Ans. 

    Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Kubernetes u...

  • Answered by AI
  • Q2. What is the main difference in docker swarm and Kubernates
  • Ans. 

    Docker Swarm is simpler and easier to set up, while Kubernetes is more powerful and feature-rich for complex deployments.

    • Docker Swarm is easier to set up and manage for smaller deployments

    • Kubernetes is more powerful and feature-rich, suitable for complex deployments and scaling

    • Kubernetes has a larger community and ecosystem support compared to Docker Swarm

    • Kubernetes provides more advanced features like auto-scaling, se...

  • Answered by AI
  • Q3. Terraform state file security
Round 2 - HR 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. What are your hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - A good place for learning

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. AWS Networking (VPC, Route Table, NAT, NACL)
  • Q2. Automation Use Case (CLI, SDK)
  • Q3. CI/CD Pipeline (GitLab, GiutHub, Azure Devops, Jenkins)
  • Q4. IAAC (Terraform)
  • Q5. Deployments (Docker, Kubernetes)
  • Q6. Database (MongoDB)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in any one cloud (AWS, GCP, Azure) and its services. I will suggest GCP because Quantiphi is an award-winner as GCP premium partner.

Quantiphi Analytics Solutions Private Limited interview questions for designations

 Platform Engineer

 (3)

 Senior Data Engineer

 (8)

 Senior Sales Engineer

 (2)

 Senior Devops Engineer

 (1)

 Senior Software Engineer

 (1)

 Senior Test Engineer

 (1)

 Senior Research Engineer

 (1)

 Senior Machine Learning Engineer

 (4)

Senior Platform Engineer Jobs at Quantiphi Analytics Solutions Private Limited

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Hashtable and hashmap?
  • Ans. 

    Hashtable is synchronized while hashmap is not.

    • Hashtable is thread-safe while hashmap is not.

    • Hashtable does not allow null keys or values while hashmap allows one null key and multiple null values.

    • Hashtable is slower than hashmap due to synchronization.

    • Hashtable is a legacy class while hashmap is a newer implementation.

  • Answered by AI
  • Q2. Difference between hashmap and concurrent hashmap?
  • Ans. 

    Hashmap is not thread-safe while Concurrent Hashmap is thread-safe.

    • Hashmap is not suitable for multi-threaded environments as it can lead to race conditions and data inconsistencies.

    • Concurrent Hashmap allows multiple threads to access and modify the map concurrently without any data inconsistencies.

    • Concurrent Hashmap uses a technique called lock striping to achieve thread-safety.

    • Concurrent Hashmap is slower than Hashma...

  • Answered by AI
  • Q3. Jdbc step
  • Q4. Spring ioc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was average they asked questions from core java spring hibernate... And so on..

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OOPs concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself.

I applied via Naukri.com and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. OOPS, collection, database
  • Q2. Method overload and overrding, interface, abstract class, one small program on string manipulation,database queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your core java basics revised and keep sound knowledge of your project

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Online test of 90 minutes at 5:30 pm

  • Q1. What are the basic concepts of Object-Oriented Programming, and how do they relate to data structures and algorithms?
  • Ans. 

    Object-Oriented Programming concepts include encapsulation, inheritance, and polymorphism, which are used to organize and manipulate data in data structures and algorithms.

    • Encapsulation: Bundling data and methods that operate on the data together in a single unit (object). Example: a class representing a car with properties like color and methods like drive().

    • Inheritance: Allowing a class to inherit properties and meth...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Online coding interview of 45 minutes at 6:10PM.

  • Q1. 

    String Compression Problem Statement

    Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the consecutive duplicates with the coun...

  • Ans. 

    Implement a program to compress a string by replacing consecutive duplicates with the count of repetitions.

    • Iterate through the string and keep track of consecutive characters and their counts.

    • Replace consecutive duplicates with the count of repetitions.

    • Handle the case where the count of repetitions is greater than 1 and less than or equal to 9.

  • Answered by AI
  • Q2. Can you explain queries related to insert, selection, and joins in a database management system?
  • Ans. 

    Explanation of insert, select, and join queries in a database management system.

    • Insert query is used to add new records to a table.

    • Select query is used to retrieve data from a table based on specified criteria.

    • Join query is used to combine rows from two or more tables based on a related column between them.

    • Examples: INSERT INTO table_name (column1, column2) VALUES (value1, value2); SELECT * FROM table_name WHERE condit...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round of 30 minutes at 6pm

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7 cgpaNewgen Software interview preparation:Topics to prepare for the interview - Data Structures and algorithms(arrays,strings,linked list,graphs,trees,recursion,backtrack),OOPS,Relational Database Management System, Operating SystemTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be accurate in one language rather than doing more languages but not perfect in anyone
Tip 2 : Revise your concepts regularly and try to attempt 3-4 times a question which you cannot do in first time so that after that if u see question of that type u know how to approach 
Tip 3 : Do practice of quality questions not only quantity.

Application resume tips for other job seekers

Tip 1 : One page resume 
Tip 2 : Only mentioned that projects and skills in which you are really good don't write anything just to fulfill the space

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of DS and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - be thorough in data structures and algorithms

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Dsa java oops dbms networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience.
You have to be very strong in DSA.

Quantiphi Analytics Solutions Private Limited Interview FAQs

How many rounds are there in Quantiphi Analytics Solutions Private Limited Senior Platform Engineer 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 and HR.
How to prepare for Quantiphi Analytics Solutions Private Limited Senior Platform Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Quantiphi Analytics Solutions Private Limited. The most common topics and skills that interviewers at Quantiphi Analytics Solutions Private Limited expect are Python, Monitoring, Terraform, Catering and SQL.
What are the top questions asked in Quantiphi Analytics Solutions Private Limited Senior Platform Engineer interview?

Some of the top questions asked at the Quantiphi Analytics Solutions Private Limited Senior Platform Engineer interview -

  1. What is the main difference in docker swarm and Kuberna...read more
  2. Explain Kubernates Architect...read more
  3. CI/CD Pipeline (GitLab, GiutHub, Azure Devops, Jenki...read more

Tell us how to improve this page.

Quantiphi Analytics Solutions Private Limited Senior Platform Engineer Interview Process

based on 3 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 369 Interviews
ITC Infotech Interview Questions
3.6
 • 341 Interviews
CitiusTech Interview Questions
3.3
 • 277 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 223 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Indium Software Interview Questions
4.1
 • 186 Interviews
View all
30% less than the average Senior Platform Engineer Salary in India
View more details

Quantiphi Analytics Solutions Private Limited Senior Platform Engineer Reviews and Ratings

based on 21 reviews

3.7/5

Rating in categories

4.0

Skill development

3.4

Work-life balance

3.8

Salary

3.1

Job security

3.3

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 21 Reviews and Ratings
Senior Platform Engineer

Mumbai,

Bangalore / Bengaluru

+1

2-6 Yrs

₹ 10-21 LPA

Senior Platform Engineer (GCP)

Mumbai

3-7 Yrs

Not Disclosed

Explore more jobs
Data Engineer
446 salaries
unlock blur

₹5 L/yr - ₹18.6 L/yr

Senior Data Engineer
421 salaries
unlock blur

₹8 L/yr - ₹26 L/yr

Senior Business Analyst
342 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Business Analyst
337 salaries
unlock blur

₹6.5 L/yr - ₹14 L/yr

Machine Learning Engineer
315 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Explore more salaries
Compare Quantiphi Analytics Solutions Private Limited with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

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