Skip to main content

How to ‘close’ the interview

Knowing how to successfully close interview can make the difference between getting the job and being one of the unfortunate individuals who receives a rejection letter in the mail. While much attention is given to the matters of how to write a resume and cover letter as well as what to expect in regards to interview questions, far too many job seekers are unprepared when comes to knowing how to successfully close an interview. Keep in mind that this is perhaps your last opportunity to demonstrate why you are perfect for the job. Successfully closing an interview walks a fine line between being too aggressive and not being aggressive enough.
It’s always a good idea to bring along some questions that you can ask the interviewer at the end of the interview. This shows that you have more than just a passing interest in the position and truly want the job. If you have taken the time to do your research on the company, this also demonstrates initiative and increases your chances of being hired.
Once all questions have been asked and answered, it is quite appropriate to ask the interviewer when they anticipate making a hiring decision as well as what the next step in the interviewing or hiring process will be. Make a point to ask the employer for a business card so that you can have readily available contact information for following up with the employer in the days to come. This will also make it much easier for you to mail the all important interview thank-you letter as soon as you return home.
Also don’t forget to shake hands with the employer and summarize how your skills and experience, as well as ambition and desire, make you the perfect candidate for the position. If you’re really confident and don’t mind taking risks, you might ask “So, is there anything stopping you from offering me the job right now?” This ploy should only be used if you feel the interview has gone well, however. Otherwise you might be setting yourself, as well as the interviewer, up for an embarrassing response.
A much milder version of this tactic would be, “Is there anything else I can answer for you to make a hiring decision?” If you really aren’t sure how well the interview went and don’t want to waste your time waiting for a call that may never come, you could simply ask, “Have I done well enough to advance to the next level of the hiring process?”
This puts all the cards on the table and an employer who appreciates honesty and frankness will reciprocate by letting you know where you stand. If for some reason, you were not the candidate the employer was looking for this may give you a golden opportunity to clear up something that might make you the ideal candidate. Otherwise, at the very least, you won’t be spending the next two weeks waiting by the phone and you can begin concentrating on other employment prospects.
In the event that the employer does not offer you a firm commitment and seems to be a bit hesitant about when a firm decision will be made, don’t take it as a personal affront. There could be any number of reasons why the employer is reluctant to hire you on the spot-the least of which could be the need to consult with superiors. It’s important that even if you are disappointed about not receiving a job offer on the spot that you remain positive, upbeat and confident.

Finally, take the time to thank the employer for meeting with you. Above all, remember to always be professional no matter what happens.

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...