Skip to main content

#saynotointerview for recruitment process


I recently went for a training that consists of employees from multinational corporations. During the brainstorming sessions, one fellow gentleman started speaking about firing his colleague. This guy is actually a senior manager and he interviewed the departed. He was blaming the unfortunate guy told he knows all the job description and he was smart during the interview. So they selected him for the job. But in the job, he never raised to his potential and they sacked him. The senior manager was claiming in the brainstorming session the decision was correct. But lots of people in training disagreed with that. Majority people told the recruitment or interview process in the company flawed to test that lad's knowledge. I strongly believe this might not be a one of the situation in recruitment? How many of you came across similar experience in your professional career?
Do you believe the things we put in the job description are the exact things the potential employees will be doing their job? Or is it the aspirational stuff the organisation or the management indented to do? I am going to make a very controversial statement here. In my career, I never worked for any organisation that described the exact job in their job description. I strongly believe most of you reading this will also not disagreeing with me on this case. That is where I believe we should have to think about our recruitment process. Do we need someone to answer the interview questions based on organisations aspirations? Or do we need the real talents who can make a difference in your work environment?
Some of the companies already do some real time tests or practises in the actual office environment as part of the recruitment process. They will be only selected based on the initial assessment or test, initial interview- some might be after the 1st telephonic interview or technical interview. Do you think in 2-4 hours assessment like this can actually bring out the raw latent skills and capabilities? I can strongly say this will never give you the expected result. One of my head of department and I had this discussion and he told me the trust and behaviour aspects are his main reason for making the final cut on this. The questions remain the same? Is it the best candidate for the job?   
All the interview processes that mentioned before are there for long period. Any of you ever thought or read about any alternative approaches to recruiting the right candidate? I believe in this twenty-first century we need to think about unconventional approaches for recruiting the right candidates for driving the organisations and the world forward. So what alternatives can we think about?
The slogan I am putting down is #saynotointerviews. I believe we should give the potential employees to showcase their skills and talents in the real work environment.
  • Take the potential candidate for 2,3 days of real work environment
  • Ask them to do a specific task as your normal employees are doing.
  • Assign them to a partner to track their progress.
  • Evaluate them over this 2, 3 days how they catching up with the job.
  • How do they understand the job function?
  • How are they applying their knowledge in the actual work culture?
  • Ask them to present their experience to the team.
  • Review them based on how they performed on last 2 or 3 day
  • Select the most suitable candidate for your work environment.
I know there are lots of companies around the world trying different approaches in their recruitment processes. But how many organisations on the current setup can think differently about their current recruitment process?  Anyone ready to scrap their traditional recruitment process and ready to explore the process described above? I believe this will definitely going to help the organisations to find the best/cream candidate for your setup. These potential employees will also be going to benefits from these kind experiences. I would like to conclude this with a George Bernard Shaw quote, "The reasonable man adapts himself to the world; the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man."

Comments

  1. Thank you for this article because it’s really informative, I love reading your article and I hope that I will read some more about this stuff, it’s really informative and very entertaining. thanks a lot and have a great day. A Custom Mobile App Development specializing need a customized Website, Mobile App, or an E-commerce Platform on Wix, WooCommerce, Magento, or Shopify?

    ReplyDelete
  2. Very nice blog. You explain each thing very deeply. Please post more blogs like this. I always love to read your content. Thanks for posting.
    website design company in USA

    ReplyDelete

Post a Comment

Popular posts from this blog

Emergence and Creative Confidence

I started my career on 1st of September 2008 as a software developer at Manchester. Some people in my personal life might know about it. I like to say, that day as the day I found an aura in my life, transformation from the worst possible situation into a new beginning in a matter of 1 hour. The week before, I got an interview confirmation from that company and I was not at all excited about it because I know it is going to be the final interview in UK if I am unsuccessful. I was in that mental state because I was not successful for past 12 such occurrences and not expecting anything different. This shows I was not a brilliant person but had a strong passion and hardworking nature to achieve success. I passed my masters on Sep 2007 and after that, I decided to work only in software development, and lots of people including my parents told this as a worst possible decision. To be precise, they have no issues in choosing software development, but on my adamant decision only software de...

Bootstrap Server Side Sorting Cont....

On my previous post   I had already mentioned about how to apply the sort to Bootstrap paginated tables. By making the following changes server side sorting can be achieved along with pagination. On Filter Model self.sortBy = ko.observable( 'Id' );//Default sort Column self.sortAscending = ko.observable( false ); self.iconType = ko.observable( 'glyphicon glyphicon-chevron-down' ); // Icon to appear near Column No Changes to Adarsh Log Model or Adarsh Log list Model Knockout.js View Model for Adarsh Log Changes Add the sortTable  method to it self.sortTable = function (viewModel, e) {             var columClicked = $(e.target).attr( "data-column" )             var sortAscending = (self.filter().sortAscending() === true ) ? false : true ;             self.filter().sortAscendi...

Single page application (SPA) using ext.js

what is spa? Single page application are applications that fit in one page with rich and fluid user experiences like a desktop based applications. Why is SPA? All web based elements (html, CSS,javascript) are downloaded from the server on single page load and avoid the continuous page post back. i can explain what this mean. Suppose your web application is made of certain flow and it consists of 5 different pages. Each page need to get data from the user and save before moving to the next page. So when we navigate from one page to other it need to make a round trip to server to store the data in one page and get the data for the next page to display. but in spa we can avoid the continuous post backs. The whole page will not post back any time other than the first load. But it communicate to the server dynamically behind the scene and can achieve the same functionality. Spa using ext.js designing a SPA using ext.js is a challenging task if you are unaware about the ext.js ...