Upload Button Icon Add office photos

Filter interviews by

Partech Interview Questions and Answers

Updated 31 Jan 2022

Partech Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Data structures and algorithms (basics, to write a program in a optimised way)
  • Q2. Basics of .net framework like OOPs concept, Dependency Injection, Entity Framework
  • Q3. Cloud projects (previously worked on)
  • Q4. Design YouTube (as microservice)
  • Ans. 

    Design YouTube as microservice

    • Use microservices architecture to break down the functionalities of YouTube

    • Create separate services for video upload, video processing, video storage, user authentication, search, recommendation, etc.

    • Use message queues to communicate between services

    • Implement load balancing and auto-scaling to handle high traffic

    • Ensure fault tolerance and data consistency

    • Use containerization tools like Doc

  • Answered by AI
  • Q5. Design patterns (if you have worked on or mentioned)
  • Q6. Design a cloud architecture (if you have worked on previously)
  • Ans. 

    Designing a cloud architecture

    • Identify the requirements and goals of the cloud architecture

    • Choose the appropriate cloud service provider (e.g., AWS, Azure)

    • Design the network architecture, including subnets, security groups, and load balancers

    • Plan for scalability and high availability

    • Implement fault tolerance and disaster recovery mechanisms

    • Consider data storage and backup strategies

    • Implement monitoring and logging for ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should to be able to write good code in any language. (preferred is C#)

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (220)

Jobs at Partech

View all

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Java concepts . Basic DSA
  • Q2. Stack questions and project related

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on your resume and projects. Basic problem solving is enough

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Conflict management
  • Q2. Financial forecasting and vendor management
  • Q3. Alteryx, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - - Be prepared.
- Read the JD to understand the probable questions.
- Ask your queries and understanding about the requirements.
- Smile
- Be yourself
- Prepare introduction in line with the job

I applied via Naukri.com and was interviewed before Nov 2021. There were 3 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 

(1 Question)

  • Q1. Project related interview questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion, Asked some questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have attended for manual testing. I was little easy
Round 1 - Aptitude Test 

Double entry, isin, balance sheet

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through your CV once and answer

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What are derivatives, capital market, money market?. What is the formula for NAV?. What are forward, futures and options?.
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset. Capital market refers to the market for long-term securities. Money market deals with short-term borrowing and lending.

    • Derivatives are contracts between two parties that derive their value from an underlying asset, such as stocks, bonds, commodities, or currencies.

    • Capital market is where long-term securities like stocks and bonds are...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skill is very important and freshers learn more about the company.

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

Interview Questionnaire 

1 Question

  • Q1. Datastructures, ALogorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Find the number of islands

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

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an integer array containing numbers from 0 to (N - 2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number that appears twice in the array.

    • The duplicate number is always present in the given array.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Bubble Sort Problem Statement

    Sort an unsorted array of non-negative integers using the Bubble Sort algorithm, which swaps adjacent elements if they are not in the correct order to sort the array in non-d...

  • Ans. 

    Bubble Sort is used to sort an array of non-negative integers in non-decreasing order by swapping adjacent elements if they are not in the correct order.

    • Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.

    • Repeat this process until the array is sorted in non-decreasing order.

    • Time complexity of Bubble Sort is O(n^2) in worst case.

    • Example: For input [6, 2, 8, 4, 10], the o

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the shortest path to each house.

    • Once the destination house is reached, backtrack to find the shortest path.

    • Consider using a queue data structure to implement BFS efficiently.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria7Morgan Stanley interview preparation:Topics to prepare for the interview - Java , spring, aws,azure, Algorithm, computer Architecture, compiler designTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : online resources
Tip 2 : cracking the coding interview by Gayle laykemann this is one of the best book for learning the concept at the initial level. Start practicing the approaches mention in the book once done apply the same to similar level pattern questions.
Tip 3 : geeks for geeks start from school level and then move towards easy medium and hard once done practice the previous year questions

Application resume tips for other job seekers

Tip 1 : precise clear concise and well written 
Tip 2 : mentions the skills sets along with the projects

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Reason for job switch. Reason for role switch. Technical role related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and go with a smile. Do try to connect with the interviewer on a personal level. Know everything about your CV perfectly because they won’t go much beyond that. Be prepared for your new role related questions about how your current skills are transferable to your new job.

Partech Interview FAQs

How to prepare for Partech 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 Partech. The most common topics and skills that interviewers at Partech expect are .NET, C#, Python, SQL and AWS.
What are the top questions asked in Partech interview?

Some of the top questions asked at the Partech interview -

  1. Design a cloud architecture (if you have worked on previous...read more
  2. Design YouTube (as microservi...read more
  3. Data structures and algorithms (basics, to write a program in a optimised w...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 578 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
Morningstar Interview Questions
3.9
 • 244 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
BNP Paribas Interview Questions
3.8
 • 180 Interviews
View all

Partech Reviews and Ratings

based on 4 reviews

2.5/5

Rating in categories

1.7

Skill development

2.0

Work-life balance

3.2

Salary

1.4

Job security

1.0

Company culture

1.5

Promotions

1.0

Work satisfaction

Explore 4 Reviews and Ratings
Senior Accountant, Commercial

Gurgaon / Gurugram,

Jaipur

5-8 Yrs

₹ 10-16 LPA

Staff Accountant, Engagement Cloud Commercial Finance

Gurgaon / Gurugram,

Jaipur

3-5 Yrs

Not Disclosed

Database Administrator

Gurgaon / Gurugram,

Jaipur

3-8 Yrs

Not Disclosed

Explore more jobs
Web Developer
4 salaries
unlock blur

₹2.8 L/yr - ₹3 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹20 L/yr - ₹30 L/yr

Software Development Engineer II
3 salaries
unlock blur

₹27 L/yr - ₹30 L/yr

Explore more salaries
Compare Partech with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

Citicorp

3.7
Compare

American Express

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