Skip to main content

Questions you shouldn’t be afraid to ask recruiters

WHERE DO YOU SEE YOURSELF FIVE YEARS FROM NOW? …is the quintessential job interview question, not only among recruiters, but also job seekers today. Viren Naidu profiles a few questions that candidates shouldn’t be afraid to ask:
KA Narayan, President – HR, Raymond Limited:
WHAT HAS BEEN THE COMPANY’S PERFORMANCE AT VARIOUS STAGES OF GROWTH?
Significance of the question: It is important for the candidate to understand the company, its vision, growth trajectory, work environment, remuneration policies and people practices, beyond perception in the market. It could so happen that a perception relating to a development of the past has still not been corrected in the market, leaving the job seeker to decide based on outdated information.Thus, it is important for the interviewee to question the recruiter on the organisation, its long-term goals, performance and culture.
WHAT IS MY CONTRIBUTION TO THE ORGANISATION’S GOALS?
Significance of the question: This is a very critical question to ask, especially for those applying to positions with generic functional descriptions. For example, a supply chain manager’s role could mean anything from managing logistics to manufacturing. If the job seeker is not clear about his/her contribution to the organisation’s goals, this recruitment can result in low employee morale and productivity and more often than not, attrition.
Prashant Bhatnagar, Director- Hiring, Sapient India:
WHAT IS THE ORGANISATION’S DIRECTION OVER THE NEXT FEW YEARS?
Significance of the question:This demonstrates the candidate’s big picture thinking and ability to operate at a high level.
WHAT ARE THE EXPECTATIONS FROM THE ROLE OTHER THAN THOSE DEFINED IN THE JOB DESCRIPTION?
Significance of the question:This will help the candidate in determining the organisation’s maturity and provide a peek into their performance assessment processes.It will help the candidate visualise success as outlined by the organisation.
Judhajit Das, Chief-HR, ICICI Prudential Life Insurance:
WHAT ARE THE AVENUES AVAILABLE IN THIS ORGANISATION TO UPDATE MY SKILLS FROM TIME TO TIME AND IMPROVE MY PERFORMANCE?
Significance of the question: It would provide clarity on various classroom and online training programs to the employee. This would also highlight  that the candidate has an aptitude and willingness to learn.
WHAT IS THE CULTURE AND WORK ENVIRONMENT OF THE ORGANISATION?
Significance of the question: This would help the candidate understand whether there is a fitment of the organisational culture with his/her personal values and evaluate if the job is playing to his/her strength.
COULD YOU EXPLAIN THE WAY FORWARD AND THE GROWTH PROSPECTS OF THIS ROLE IN THIS ORGANISATION?
Significance of the question: It indicates that the candidate has a long-term view of being with the organisation. Also, it shows that the candidate is goal-oriented and ambitious about his/her career.
Article courtesy of Times Ascent.
WHERE DO YOU SEE YOURSELF FIVE YEARS FROM NOW? …is the quintessential job interview question, not only among recruiters, but also job seekers today. Viren Naidu profiles a few questions that candidates shouldn’t be afraid to ask:
KA Narayan, President – HR, Raymond Limited:
WHAT HAS BEEN THE COMPANY’S PERFORMANCE AT VARIOUS STAGES OF GROWTH?
Significance of the question: It is important for the candidate to understand the company, its vision, growth trajectory, work environment, remuneration policies and people practices, beyond perception in the market. It could so happen that a perception relating to a development of the past has still not been corrected in the market, leaving the job seeker to decide based on outdated information.Thus, it is important for the interviewee to question the recruiter on the organisation, its long-term goals, performance and culture.
WHAT IS MY CONTRIBUTION TO THE ORGANISATION’S GOALS?
Significance of the question: This is a very critical question to ask, especially for those applying to positions with generic functional descriptions. For example, a supply chain manager’s role could mean anything from managing logistics to manufacturing. If the job seeker is not clear about his/her contribution to the organisation’s goals, this recruitment can result in low employee morale and productivity and more often than not, attrition.
Prashant Bhatnagar, Director- Hiring, Sapient India:
WHAT IS THE ORGANISATION’S DIRECTION OVER THE NEXT FEW YEARS?
Significance of the question:This demonstrates the candidate’s big picture thinking and ability to operate at a high level.
WHAT ARE THE EXPECTATIONS FROM THE ROLE OTHER THAN THOSE DEFINED IN THE JOB DESCRIPTION?
Significance of the question:This will help the candidate in determining the organisation’s maturity and provide a peek into their performance assessment processes.It will help the candidate visualise success as outlined by the organisation.
Judhajit Das, Chief-HR, ICICI Prudential Life Insurance:
WHAT ARE THE AVENUES AVAILABLE IN THIS ORGANISATION TO UPDATE MY SKILLS FROM TIME TO TIME AND IMPROVE MY PERFORMANCE?
Significance of the question: It would provide clarity on various classroom and online training programs to the employee. This would also highlight  that the candidate has an aptitude and willingness to learn.
WHAT IS THE CULTURE AND WORK ENVIRONMENT OF THE ORGANISATION?
Significance of the question: This would help the candidate understand whether there is a fitment of the organisational culture with his/her personal values and evaluate if the job is playing to his/her strength.
COULD YOU EXPLAIN THE WAY FORWARD AND THE GROWTH PROSPECTS OF THIS ROLE IN THIS ORGANISATION?

Significance of the question: It indicates that the candidate has a long-term view of being with the organisation. Also, it shows that the candidate is goal-oriented and ambitious about his/her career.

Comments

Popular posts from this blog

Login and Registration Example in JSP with Session

Those who want to start with jsp and MySQL, this is an excellent example for themselves. Here you can learn how to insert data to MySQL using JSP. Also you can learn about session handling in jsp. 1 2 3 4 5 6 7 8 9 10 CREATE TABLE `members` (    `id` int (10) unsigned NOT NULL auto_increment,    `first_name` varchar (45) NOT NULL ,    `last_name` varchar (45) NOT NULL ,    `email` varchar (45) NOT NULL ,    `uname` varchar (45) NOT NULL ,    `pass` varchar (45) NOT NULL ,    `regdate` date NOT NULL ,    PRIMARY KEY   (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; index.jsp 1 2 3 4 5 6 ...

Timer funcitons in JavaScript: Reminder Script

Timers are used in web pages and we will discuss how to setup one and how to use one with an example. The function setTimeout() in function is used and here is its general syntax. mytime = setTimeout(expression, msec); mytime  is the identifier used to identify the current timeout function.  expression  is the statement that is to be executed after the specified time has ticked off.  msec  is the duration of time in milliseconds after which the expression will be executed.  You can see by using setTimeout function we can execute any function or object after a set of time. For example if msec is set 5000 then the expression will be executed after 5 seconds or 5000 milliseconds.  We will try one example where we will have four period buttons and each button will set a different time for another function to execute and display a alert button. We will call it as a reminder script and we will get one alert box based on the period button we click...

Binary Addition

/* File Name : BinAdd.java */    import java.util.*; public class BinAdd    {  public static String addBit(String a, String b, String c)  { String r=""; if(a.equals("1") && b.equals("0") || a.equals("0") && b.equals("1")) { if( c.equals("0")) r="1"; else { r="0"; c="1"; } } else if( a.equals("0") && b.equals("0") ) { if(c.equals("0")) r="0"; else r="1"; } else if( a.equals("1") && b.equals("1") ) { if(c.equals("0")){ r="0"; c="1"; } else { r="1"; c="1"; } } return c+r; }   public static String add(String a, String b)   { String r=""; int len=a.length(); String carry="0"; for(int i=len-1;i...

Real time changing Clock showing date and time

We can display a clock which will be showing the local time of the client computer by using JavaScript. Note that this time displayed is taken from user computer and not from the server.  We have seen in our  date object example how to display current date and time   where the current date and time is displayed once. Here we will try to display changing clock or real time change in date and time by using  setTimeout function . This setTimeout function we have used to trigger the time display function in a refresh rate of 1000 mill seconds ( 1 Sec ). This refresh rate can be changed to any other value. By changing the value to 5000 the clock will refresh and show the exact time once in every 5 seconds.  Here is the demo of this script and code is given below that.  Sat Apr 23 2016 08:27:22 GMT+0530 (IST)   Here is the code <html> <head> <title>(Type a title for your page here)</title> <script type="text/javascript...