Skip to main content

Going for an interview? Tips to grab the job you want

We dissect the interview process and tell you how you can present your best side to grab the job you want.
Before you walk in
1) Go through the job profile: Evaluate the job description to know what the employer actually wants. Then write a cover letter highlighting how your strengths and skills ensure that you are the best person for the job
2) Research the employer: Be up to date on the firm’s products, latest achievements and future goals so that you don’t trip when the recruiters ask you tricky questions. This will also prove how keen you are to join the company
3) Smarten your resume: Make the resume concise and honest, and ensure that you have proof to support what you mention. Avoid writing mundane skills or cliches like ‘hard working’. Be specific about your competencies and achievements and use positive words to turn flaws into virtues
4) Spruce up your appearance: Dress conservatively and stick to sober colors like blue, grey and beige. Groom your hair and go easy on accessories, jewellery and perfume. Polish footwear well. Women should avoid teetering heels; two inches makes a subtle statement.

During the interview
1) Perfect posture: Walk confidently, sit straight and don’t fidget. Rest your hands lightly on the armrest or on your knees. Keep your feet together planted firmly on the ground. If you want to change posture, cross your ankles, do not put one leg over another.
2) Pay attention: Keep the interview revolving around your professional life. Answer only what you have been asked and avoid rambling. If the interviewer asks you a question you don’t know much about, admit it. Avoid controversial topics and never badmouth anyone.
3) Attitude matters: The recruiters may deliberately try to rile or provoke you to check how you react in a stressful environment, so keep a cool head. If you believe that a factual answer is right but the interviewer is questioning its validity, be assertive, not argumentative.
4) Be inquisitive: Asking questions proves that you are interested in the job and willing to work there for the long run. So, find out the responsibilities that you will be handling, major projects that can come up and other things you will be permitted to do.

Favorite questions
The questions that the interviewer asks will depend on the job profile, but some are asked across the board. Besides, you need to be prepared with your own set of queries to understand exactly what the job and the company require of you.
5 questions you should ask
> What will be my key responsibilities?
> What is the potential for promotion
> What is the type of on-the-job training that you provide?
> What results do you expect from me and within what time frame?
> What resources/team would I have at my disposal? To whom will I report?

Most tricky question: What’s your salary expectation?
Wait for the interviewer to ask this question and then mention a range. If he quotes a number you don’t agree with, ask if you could discuss this after you have seen the compensation break-up.

10 questions you are likely to be asked
> Why did you leave your last job?
> Where do you see yourself five years from now?
> What can you tell us about yourself?
> Why should we hire you?
> What has been your most important accomplishment?
> What are your outside interests?
> How do you handle failure?
> How did you overcome your toughest professional problem?
> What is your greatest weakness/strength?

> Why do you want to work here?

Comments

Post a Comment

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