Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Procol Team. If you also belong to the team, you can get access from here

Procol Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Procol Interview Questions and Answers

Updated 23 Sep 2024

Procol Interview Experiences

Popular Designations

4 interviews found

Sales Manager Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Why do you want to join procol?
  • Q2. What if you are not selected here?
  • Q3. Do you want to become an entrepreneur?

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company,don't waste your time by giving interview here. Firstly the HR will end up rescheduling the interview multiple times. My first round was taken by the HR head ,who was asking me functional questions related to sales which I was appalled by. The second Round was taken by the Director sales which was good and I ended up clearing. The final round will be taken by the CEO who is a noob,In the name of cultural fitment he will ask you nonsensical questions and end up rejecting you for no reason. If the CEO is like this you can very well make out the kind of culture the company fosters.

Sales Manager Interview Questions asked at other Companies

Q1. If you're in Cold areas like Kashmir or Himachal Pradesh. & You have to sell an AC which is having only Cold option. How would you do that?
View answer (18)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Case Study 

Related to business growth and a template to increase sales

Round 2 - Case Study 

Reason for this role, what do you think is the way to move forward in this role.

Round 3 - HR 

(2 Questions)

  • Q1. Generic profile matching
  • Q2. Do you have any other offers
  • Ans. 

    Yes, I have received offers from other companies.

    • I have received offers from Company A and Company B.

    • I am currently in the final stages of interviews with Company C.

    • I am considering all offers before making a decision.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - it’s chill, practice some case studies. focus on current market scenarios related to SaaS products.

Market Analyst Interview Questions asked at other Companies

Q1. A/B testing: given two test cases each with 50% customers, A: 1000 bookings and B 20% more bookings than A, cashback for A: 4 dollars per booking, redemption rate: 50% Cashback for B: 6 dollars per booking, redemption rate: 75% Commision pe... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. 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 - One-on-one 

(1 Question)

  • Q1. More to do with past experience and process know how
Round 3 - One-on-one 

(1 Question)

  • Q1. Overall scope for me in the organisation (which in reality wasn't there)

Interview Preparation Tips

Interview preparation tips for other job seekers - Please please do not join

Category Manager Interview Questions asked at other Companies

Q1. If you are to start a men's grooming category in Gurgaon then how many partners will you start with
View answer (2)

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

The test consists of 2 sections: MCQ’s and 3 coding questions. It was a 90 minutes test, which could be started anytime between the time window of 2 hrs (In my case window was open from 4 PM to 6 PM). The test was proctored and any suspicious activity would have cancelled our test.

  • Q1. 

    Game of Dominoes Problem Statement

    Rafiq loves to play with piles of dominoes, especially when they are of equal heights. His father gifted him 'N' piles of dominoes, each with a positive number of stacke...

  • Ans. 

    Calculate minimum cost to make consecutive windows of domino piles equal in height.

    • Iterate through each window of size K and calculate the minimum cost to make piles equal in height.

    • Keep track of the running sum of domino heights in each window.

    • For each window, find the median height and calculate the cost to make all piles equal to the median height.

  • Answered by AI
  • Q2. 

    String Ka Khel Problem Statement

    Ninja is creating a new game ‘String Ka Khel’ for his gaming shop. In this game, players are given ‘N’ strings. The objective is to find the maximum length of strings that...

  • Ans. 

    Compute the maximum length of a string that can be formed by joining given strings based on a specific condition.

    • Iterate through each string and store the count of strings ending with 'R' and 'B'.

    • Check if there are any strings ending with 'R' and 'B' that can be combined to form a longer string.

    • Return the maximum length of the string that can be formed or 0 if no combination is possible.

  • Answered by AI
  • Q3. 

    Minimum Operations to Equalize Array

    Given an integer array ARR of length N where ARR[i] = (2*i + 1), determine the minimum number of operations required to make all the elements of ARR equal. In a single...

  • Ans. 

    The minimum number of operations required to make all elements of the given array equal.

    • Calculate the target value as the sum of all elements divided by the length of the array.

    • Find the absolute difference between each element and the target value to determine the number of operations needed.

    • Return the sum of all absolute differences as the minimum number of operations required.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a 60 minutes video call round held on Google Meet.The Interviewer was very helpful.

  • Q1. 

    Power of a Number Problem

    You are given two integers, X and N. Your task is to compute the value of X raised to the power of N (i.e., X^N).

    Input:

    The first line contains an integer T, the number of tes...
  • Ans. 

    Compute the value of X raised to the power of N for given integers X and N.

    • Read the number of test cases T

    • For each test case, read the values of X and N

    • Calculate X^N for each test case

    • Print the result of X^N for each test case

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with methods getSize, isEmpty, push, pop, and getTop.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure each operation runs in O(1) time complexity.

    • Handle edge cases like empty stack appropriately.

    • Implement the logic for each operation as specified in the question.

    • Test the implementation w...

  • Answered by AI
  • Q3. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement exists in a hash set.

    • Sort the pairs based on the first element and then the second element.

    • Use a hash set to store elements as you iterate through the array to avoid duplicates.

    • Return the list of pairs that satisfy the sum condition.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Search in Infinite Sorted 0-1 Array Problem Statement

    You are provided with an infinite sorted array that consists exclusively of 0s followed by 1s. Your task is to determine the index of the first occurr...

  • Ans. 

    Find the index of the first occurrence of 1 in an infinite sorted 0-1 array.

    • Use binary search to efficiently find the index of the first occurrence of 1.

    • Keep doubling the search range until you find a range that contains 1.

    • Update the search range based on the value at the mid index.

    • Return the index of the first occurrence of 1 once found.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from JAYPEE INSTITUTE OF INFORMATION TECHNOLOGY. I applied for the job as SDE - Intern in NoidaEligibility criteria6 CGPAProcol interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Operating system, Databases, Javascript, NodeJs, ReactTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Do at least two good projects relevant to the company and role applying for.
Tip 2 : Always read the job description carefully and do some research about the company
Tip 3 : Have a good knowledge of Computer Science fundamentals.

Application resume tips for other job seekers

Tip 1 : Include some relevant skills required in the job description.
Tip 2 : Make a single-page resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Procol Software Developer Intern Interview Questions and Answers

Q1. Power of a Number Problem You are given two integers, X and N. Your task is to compute the value of X raised to the power of N (i.e., X^N). Input: The first line contains an integer T, the number of test cases.Each of the next T lines conta... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Procol interview questions for popular designations

 Category Manager

 (1)

 Software Developer Intern

 (1)

 Sales Manager

 (1)

 Market Analyst

 (1)

Jobs at Procol

View all

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. When and where did you code in your life?
  • Ans. 

    I started coding in high school and continued throughout college, working on various projects and internships.

    • Started coding in high school programming classes

    • Continued coding in college for computer science degree

    • Worked on coding projects during internships

    • Currently coding as a System Engineer

  • Answered by AI
  • Q2. What is your big challenge you encountered during coding?
  • Ans. 

    My biggest challenge during coding was debugging a complex algorithm that was causing unexpected errors.

    • Debugging a complex algorithm

    • Identifying and fixing unexpected errors

    • Understanding the logic behind the algorithm

    • Testing different scenarios to reproduce the issue

    • Collaborating with team members to find a solution

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: They asked two coding questions. 1. General coding question based on brute force method, No fancy algorithm is required. 2. Related to compiler design, we have to describe and define our own syntax.
Tips: For written coding exams, write code perfectly and neatly with properly defined variables. They will test your code writing skills. Comments are must. For syntax designing questions, consider all constraints and don't make syntax so complex.
Duration: 1 hour 30 minutes
Total Questions: 2

Round: Technical + HR Interview
Experience: I explained my intern experience. During hr they will ask about your PORs, how you felt handling them etc
Tips: Be prepared with your most exciting, challenging, happiest, depressed moments in your life. Connect those with your coding time.

Skills: Communication, Coding Skills
College Name: IIT Madras
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you find yourself suitable for this job
  • Q2. What are the name of the companies you are connected to?
Round 2 - One-on-one 

(1 Question)

  • Q1. How are you so sure you can lead a team
Round 3 - HR 

(1 Question)

  • Q1. What salary hike you would fit in
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Recruiter call 

(1 Question)

  • Q1. About previous roles
Round 2 - One-on-one 

(1 Question)

  • Q1. Hiring manager round
Round 3 - Coding Test 

Take home assignment

Round 4 - One-on-one 

(1 Question)

  • Q1. Assignment review
Round 5 - One-on-one 

(1 Question)

  • Q1. VP interview regarding past work

Interview Preparation Tips

Interview preparation tips for other job seekers - Offer was rescinded. So proceed with caution ⚠️ Keep interviewing elsewhere.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Basic Qualification
  • Q2. Reasons for job change
Round 2 - Technical 

(2 Questions)

  • Q1. Virtual Dom vs Real Dom
  • Ans. 

    Virtual Dom is a lightweight copy of the Real Dom, used for efficient updates in web development.

    • Virtual Dom is a lightweight copy of the Real Dom, used for efficient updates in web development.

    • Real Dom represents the actual structure of the web page, while Virtual Dom is a simplified version stored in memory.

    • Changes made to the Virtual Dom are compared with the Real Dom to determine the minimum number of updates neede...

  • Answered by AI
  • Q2. React Hooks flow

Interview Preparation Tips

Interview preparation tips for other job seekers - Be more focused on technical in Deep as else you'll be rejected :)

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2022. There were 4 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 

Aptitude test and coding test

Round 3 - Technical 

(1 Question)

  • Q1. Python basics and about academic project
Round 4 - Technical 

(1 Question)

  • Q1. Python questions and hands on coding
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MENTAL FAMILIY RELATION

Round 2 - One-on-one 

(1 Question)

  • Q1. Share ur experience

Procol Interview FAQs

How many rounds are there in Procol interview?
Procol interview process usually has 2-3 rounds. The most common rounds in the Procol interview process are One-on-one Round, Case Study and Resume Shortlist.
How to prepare for Procol 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 Procol. The most common topics and skills that interviewers at Procol expect are Procurement, IT Sales, B2B Sales, SAAS and Lead Generation.

Tell us how to improve this page.

Procol Interview Process

based on 4 interviews

Interview experience

2.8
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
Cyient Interview Questions
3.7
 • 288 Interviews
Reveation Labs Interview Questions
4.3
 • 7 Interviews
View all

Procol Reviews and Ratings

based on 33 reviews

4.0/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

4.0

Salary

3.6

Job security

3.9

Company culture

3.8

Promotions

3.7

Work satisfaction

Explore 33 Reviews and Ratings
Director Sales

Gurgaon / Gurugram

6-11 Yrs

Not Disclosed

Chief of Staff

Gurgaon / Gurugram

5-10 Yrs

Not Disclosed

Business Development Intern

Gurgaon / Gurugram

0-1 Yrs

Not Disclosed

Explore more jobs
Software Engineer
11 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Customer Success Specialist
8 salaries
unlock blur

₹4.9 L/yr - ₹6 L/yr

Customer Success Manager
7 salaries
unlock blur

₹5.5 L/yr - ₹12.5 L/yr

Software Developer
6 salaries
unlock blur

₹10 L/yr - ₹18 L/yr

Senior Customer Success Specialist
5 salaries
unlock blur

₹5.5 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Procol with

QuickRide

2.9
Compare

sysotel.ai

2.3
Compare

Reveation Labs

4.3
Compare

Elucidata

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