Skip to main content

10 things you should never say in a job interview

Appearing for an interview? Must be confused as to what the interviewer will ask? How to form that positive first impression? For sure, you would not want to ruin your opportunity with an ill-chosen comment.
It’s better to choose your words carefully during an interview, unlike many job seekers, who do not think before they speak. Corinne Mills, managing director of Personal Career Management, says she can recall many instances of interviewees saying the inappropriate things. “I remember when one man was asked why he wanted the job, he replied, ‘Because my mum thought it was a good idea’,” she says.
She also tells what some other job seekers said when asked why they wanted the job “because it will pay the rent while I look for a job I really want to do”, and a common response to a question about what candidates like to do in their spare time is “go to the pub”.
Here, we bring you 10 things you should never say to your interviewer. Else, there are chances you lose out on your dream job –
1. Never come late for the interview and cover up by saying “Sorry I’m late”. To be on time is the thumb rule. Your interviewer will perceive you as a latecomer and would certainly not want you to arrive for work 20 minutes late every morning.
2. Never ask about the company’s annual leave and sickness policy during the interview. This will show that even before you have been hired, you are planning your leaves. This will make you look insincere.
3. Never take personal calls during the interview. This is to ensure that the interviewer doesn’t get the idea that you are unable to prioritize things.
4. When asked, “Where do you see yourself in five years?” never say, “Doing your job.” Though this could possibly be a genuine answer, you should always focus on the experience you would like to have gained, or level of responsibility you would like to have in the future.
5. Never badmouth your last employer or job, no matter how worse your experience might have been. Experts say “speaking badly of a previous employer is not only unprofessional, but also reflects on your character,” Your new employer will contact your former employer for background check following an interview, so it’s never wise to burn your bridges.
6. “Oh! I did not know you manufacture gadgets; I thought you made swimming costumes”. Experts say “Failing to research your prospective employer fully is a big faux pas.” Make sure you do not turn employer off by not knowing about his company and products.
7. Never resort to profanity during interview even if the interviewer himself does that. Remain professional at all times.
8. Avoid using jargons during the interview, like “I was very good at sorting out PEBs by using ARCs.” Experts say “Don’t fall into the industry jargon of your previous employer or assume the interviewer knows anything about your experience. Instead, speak clearly about your skills and experience to avoid any confusion or misunderstanding.
9. Don’t show your reluctance to shift timings, uniform or any other such norm. Any criticism will be considered rude and will make interviewer reconsider you for the job. If it’s a rule it has to be followed by all including you.

10. When asked, “What do you expect to enjoy most about this role?” never reply with any of the following: the perks, the pay, lunchtimes, my co-workers or the holidays, experts say.

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