Upload Button Icon Add office photos

Filter interviews by

Mishra Publishers & Distributors HR and Administration Team Member Interview Questions and Answers

Updated 13 Jun 2022

Mishra Publishers & Distributors HR and Administration Team Member Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed before Jun 2021. There were 7 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Case Study 
Round 3 - Technical 

(4 Questions)

  • Q1. Sell me this pen.....??
  • Ans. 

    This pen is not just any pen, it's a tool that can help you achieve your goals.

    • This pen is sleek and stylish, perfect for any professional setting.

    • It writes smoothly and effortlessly, making it easy to jot down important notes.

    • The ink is long-lasting and won't smudge or smear, ensuring your writing stays legible.

    • It's also versatile, with the ability to write on a variety of surfaces.

    • This pen is a must-have for anyone w

  • Answered by AI
  • Q2. What didi u do when u got rejected every time in sales as if u working as a sales person
  • Q3. What did u choose if we offer u salary or wages..?
  • Q4. How u can handle pressure in highly fluctuating market....
  • Ans. 

    I handle pressure in fluctuating markets by staying organized, prioritizing tasks, and seeking support when needed.

    • I prioritize tasks based on urgency and importance

    • I break down larger tasks into smaller, manageable ones

    • I communicate effectively with team members and seek support when needed

    • I stay up-to-date on market trends and adjust strategies accordingly

    • I maintain a positive attitude and focus on solutions rather t

  • Answered by AI
Round 4 - Coding Test 
Round 5 - Assignment 
Round 6 - One-on-one 

(1 Question)

  • Q1. Where u can see urself in last 6 months if we hire u
Round 7 - HR 

(1 Question)

  • Q1. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in every situation and having a good communication skill and always try to be a creative and positive mindset

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

The only thing that matters to you right here in your honestly

Round 2 - Group Discussion 

The most common way of dealing with this type is the following

Round 3 - Aptitude Test 

There are no other options than the fact you can use it

Round 4 - One-on-one 

(2 Questions)

  • Q1. The most common type for the species are those
  • Q2. They have been doing it all day and they don’t know what
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2022. 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 

(8 Questions)

  • Q1. Teem member is round the teem your friends life and self
  • Q2. Teem member and group discussions to share the problems to help
  • Q3. Teem member is round coding test to worker come to teem
  • Q4. Asking to teem member sear the help
  • Q5. Hr and group discussions with the problems to teem member is round coding for the help you get your
  • Q6. Teem member and Technical support of worker to round-on round
  • Q7. Teem member and hr and asaiment or all teem family to the working is no problem with you
  • Q8. Teem member and asaiment or all teem member and work on your Rescpons

Interview Preparation Tips

Interview preparation tips for other job seekers - Teem member round coding for you help me with your friends
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Backward coding .logical reasoning

Round 2 - Aptitude Test 

Relationships,number series

Round 3 - HR 

(2 Questions)

  • Q1. Self intradution
  • Q2. Self learning independent

Interview Preparation Tips

Interview preparation tips for other job seekers - be positive,don"t"be nervous
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I was interviewed in Apr 2023.

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

90 mcq will be there

Round 3 - Coding Test 

It's about some programming language

Round 4 - Technical 

(2 Questions)

  • Q1. About project in detail
  • Q2. Self introduction Project in real time

Interview Preparation Tips

Interview preparation tips for other job seekers - I didnt qualify my interview give me some advice for me
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(2 Questions)

  • Q1. Why do you want to change the job?
  • Q2. How long are u looking to be with Amazon?
Round 3 - One-on-one 

(1 Question)

  • Q1. Techinal assesement like team handling experience, conflict management, cost saving initatives

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for it good company

I applied via campus placement at National Institute of Technology (NIT), Durgapur and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

1 DP question, 1 simple integer manipulation

Round 2 - One-on-one 

(3 Questions)

  • Q1. 4th smallest element in BST
  • Ans. 

    Find the 4th smallest element in a Binary Search Tree.

    • Traverse the BST in-order and keep track of the count of visited nodes.

    • When the count reaches 4, return the current node's value.

    • If the BST has less than 4 nodes, return null or throw an exception.

  • Answered by AI
  • Q2. Maximum number of distinct elements in every sliding window of size k
  • Ans. 

    Find maximum distinct elements in every sliding window of size k.

    • Create a hash table to store the frequency of each element in the current window.

    • Use two pointers to maintain the current window and slide it over the array.

    • Update the hash table for each new element in the window and remove the old element.

    • Keep track of the maximum number of distinct elements seen so far.

    • Repeat until all windows of size k have been proce

  • Answered by AI
  • Q3. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists

    • Create a new linked list to store the merged list

    • Compare the first nodes of both lists and add the smaller one to the new list

    • Move the pointer of the added node to the next node

    • Repeat until one of the lists is empty

    • Add the remaining nodes of the non-empty list to the new list

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. A probability related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Striver SDE sheet and practice aptitude questions

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. It was all basics of adf. Step by step process
  • Q2. Like, what is adf - what is pipeline, what is IR. What's etc.
  • Ans. 

    ADF is Azure Data Factory, a cloud-based data integration service. Pipeline is a logical grouping of activities that perform a task. IR is Integration Runtime, a compute infrastructure used by ADF to provide data integration capabilities.

    • ADF is a cloud-based data integration service

    • Pipeline is a logical grouping of activities that perform a task

    • IR is Integration Runtime, a compute infrastructure used by ADF to provide

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. It's based on some case study. And more about real time scenarios. Deep understanding of adf in ground level
  • Q2. What is adf_publish, what if data factory deleted, what if trigger executed and pipeline execution failed. How to know and how to handle, and also on transformations like which IR is used.
  • Ans. 

    adf_publish is a command to publish data factory artifacts. Handling deletion, trigger execution, pipeline failure, and IR usage can be done through monitoring and logging.

    • adf_publish is used to publish data factory artifacts such as pipelines, datasets, and linked services

    • If data factory is deleted, all artifacts will be deleted as well. It is important to have backups and version control in place

    • Trigger execution can...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Team Member interview:
  • Azure data factory
Interview preparation tips for other job seekers - It's good to have deep level understanding of each step at work. We can easily get through.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test given to me was average for a team member. 1 hour duration for multiple choice questions

Round 2 - HR 

(4 Questions)

  • Q1. Tell me about yourself Why we should higher you
  • Q2. Why we should hire you
  • Q3. What are your expectations from the job and company
  • Q4. Where do you see yourself 5 years down the line

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company but prepare yourself for the role with basis knowledge of company goals
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Group Discussion 

Previous company discussion , and self intro

Round 3 - HR 

(2 Questions)

  • Q1. Experience related and document submitted
  • Q2. Experience certificate

Mishra Publishers & Distributors Interview FAQs

How many rounds are there in Mishra Publishers & Distributors HR and Administration Team Member interview?
Mishra Publishers & Distributors interview process usually has 7 rounds. The most common rounds in the Mishra Publishers & Distributors interview process are Case Study, Technical and Coding Test.
What are the top questions asked in Mishra Publishers & Distributors HR and Administration Team Member interview?

Some of the top questions asked at the Mishra Publishers & Distributors HR and Administration Team Member interview -

  1. How u can handle pressure in highly fluctuating market....read more
  2. Sell me this pen.......read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare Mishra Publishers & Distributors with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview