Upload Button Icon Add office photos

Filter interviews by

Pankhuri Interview Questions and Answers

Updated 3 Jun 2022

Pankhuri Interview Experiences

Popular Designations

3 interviews found

Operations Interview Questions & Answers

user image Anonymous

posted on 3 Jun 2022

I applied via Indeed and was interviewed before Jun 2021. 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 - One-on-one 

(2 Questions)

  • Q1. Why we would hire you?
  • Q2. Why do you want to join us?

Interview Preparation Tips

Interview preparation tips for other job seekers - At Pankhuri I have found a very friendly ambience which helped me to open up so on It was very easy to express my self.
Rather than this, be confident about your self, never doubt your worth and always little bit preparation will be nice.
It is must to know about the company and what position you applied for.
And most importantly never lie about your skills and strength.

Operations Interview Questions asked at other Companies

Q1. Please help me design a warehouse for sports shoes (box dimension 2ft/1ft) and since you are from North India, tell me where shall it be located in North India?
View answer (1)

I applied via Referral and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?
  • Q4. Tell me about yourself.
Round 2 - One-on-one 

(1 Question)

  • Q1. Sales related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I honestly feel, please don't join this company as ANY sales associate role. Its is very bad.
The terms targets and expectations of company are illogical. Its actual mental torture. Please don't go for it.

Business Development Manager Interview Questions asked at other Companies

Q1. If your not getting support from bank or agent, then what will make further to generate business, what is the approach or strategy to be implemented during such cases to convince the customers ?
View answer (14)

I applied via LinkedIn and was interviewed in Jan 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. General interview questions were asked, tell me something about you, why should we hire you, what do you know about the company, etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be confident and energetic while you speak and answer promptly and to the point.

Business Development Executive Interview Questions asked at other Companies

Q1. scenario based: if I am a teacher in a government school and my child is getting +90% marks, then why should i buy byjus course
View answer (14)

Interview questions from similar companies

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPs w.r.t Java
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

    • OOPs stands for Object-Oriented Programming System

    • Java is a class-based OOPs language

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

    • Objects have state and behavior

    • Java supports interfaces, which allow for multiple inheritance

    • Example: A car can be represented as an object wit...

  • Answered by AI
  • Q2. Explain about the projects that you have worked on
  • Q3. Explain how Java solves machine dependency of code execution
  • Ans. 

    Java solves machine dependency by using bytecode and virtual machine.

    • Java code is compiled into bytecode which is platform-independent

    • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

    • JVM translates bytecode into machine code for the specific platform

    • This allows Java code to run on any platform with a JVM installed

    • Example: A Java program compiled on Windows can run on Linux or Mac as

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Java
Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

Numerical ability and logical reasoning followed by some coding mcqs

Round 2 - Technical 

(1 Question)

  • Q1. Print 1 to 100 without for loop
  • Ans. 

    Printing 1 to 100 without for loop

    • Use recursion to print numbers from 1 to 99

    • Print 100 outside the recursion

    • Use a base case to stop recursion at 100

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from interview bit and practice mcqs

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

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. General questions as per your cv

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Aptitude
Interview preparation tips for other job seekers - Great company for freshers.. lot to learn and experience

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. DS Algo Questions on Trees. Leadership Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up on DS Algo and white paper coding and Leadership Principles

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 60 minutes
Round difficulty - Easy

Round 2 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

At the beginning of this round, the interviewer asked me about the data structures I knew. Linked lists, trees, graphs, arrays etc. was my answer. He asked me how well I knew Dynamic Programming. I said I wasn’t strong in that and he said that he would ask me a question on dynamic programming for sure.

Round 4 - Face to Face 

Round duration - 40 minutes
Round difficulty - Easy

 

The interviewer asked me if I was comfortable with the interview process so far and how the previous interviews were. I said it was good and he gave me the first problem to solve.

Round 5 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer asked me some Com­puter Sci­ence‍ fundamentals in this round as well as some behavioural questions.

  • Q1. Implement a Trie data structure and write functions to insert and search for a few words in it.
  • Ans. 

    Implement a Trie data structure with insert and search functions.

    • Create a TrieNode class with children and isEndOfWord attributes.

    • Implement insert function to add words by iterating through characters.

    • Implement search function to check if a word exists by traversing the Trie.

    • Example: Insert 'apple', 'banana', 'orange' and search for 'apple' and 'grape'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating System, Database Management System, Object-Oriented Programming SystemTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Do lot of hard work and practice of  Data Structures and Algorithms based questions. I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Make your resume short and try to make it of one page only and do mention all your skills which you are confident of in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

It was a basic aptitude test.

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview was fine. Mostly asked about my final year project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend the interview with cool head. All the best.

Pankhuri Interview FAQs

How many rounds are there in Pankhuri interview?
Pankhuri interview process usually has 2 rounds. The most common rounds in the Pankhuri interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for Pankhuri 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 Pankhuri. The most common topics and skills that interviewers at Pankhuri expect are Python, Javascript, MongoDB, MySQL and Flutter.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Bharti Airtel Interview Questions
4.0
 • 850 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
View all

Pankhuri Reviews and Ratings

based on 18 reviews

4.1/5

Rating in categories

4.3

Skill development

3.4

Work-life balance

3.5

Salary

3.1

Job security

3.8

Company culture

2.5

Promotions

3.9

Work satisfaction

Explore 18 Reviews and Ratings
Business Development Executive
7 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

HR Officer
5 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

HR Manager
4 salaries
unlock blur

₹8 L/yr - ₹8 L/yr

Business Development Manager
4 salaries
unlock blur

₹5.2 L/yr - ₹6.4 L/yr

Technical Lead
3 salaries
unlock blur

₹25.1 L/yr - ₹37 L/yr

Explore more salaries
Compare Pankhuri with

Nykaa

3.5
Compare

Myntra

4.0
Compare

Flipkart

4.0
Compare

Amazon

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