Skip to main content

Interviewer category



I attended a couple of interviews during my 5+ year career and  and  the experience of my friends circle, especially for getting the first opportunity in the UK and came across various types of interviews. Based on that limited knowledge I can categorize the interviewers into 4 categories

1-     Technically well sounded interviewer
2-     Interviewer who has taken a list of questions and asking only those questions
3-   Interviewer have no idea about technology they are recruiting for but know about the kind of business the company is doing
4-     An interviewer who speaks more about the problems they faced with during the ex- colleagues

Category-1 technically well sounded interviewer

I came across 25-30%of technically sounded interviewers. They had clear idea about what they are recruiting for. Manipulating such an interviewer is a big issue. For all interviews basic thing we need to keep is try to be honest for 100% . But in front of a technically sounded person and who know what he is doing try to be 150% honest. If you try to fool him you won't be getting the job.

Category2-interviewer who has taken a list of questions and asking only those questions

I came across 30-40% interviewers this kind. They usually refer some commonly asked online interview questions and make them as interview. Manipulating them is very much easy. Prepare the interview with related technology Q&a. If you don't get time to prepare all at least go through commonly asked interview questions.

If you go through 2,3 interview and you prepare every interview with commonly asked questions, getting a job in 3 interviews is much guaranteed.

Category 3- interviewer have no idea about technology they are recruiting for but knows about the kind of business the company is doing

I came across 20-25% this kind of interviewer during my 5 years career.
People who might become managers or development head with different kind of skill set and very Less knowledge about the technology they are recruiting for.
They will ask very limited technical questions but ask more business problems.
Like if I have to access a web service from third party how you will design the system. Tackling this kind of interviewers is difficult job unless you are very good knowledge about the work you are doing. This kind of people less worried about the technical questions, but might be they will ask one or two technical questions. But getting an offer from this kind of people is very difficult if you are a starter or a graduate job finder.

Category 4- interviewer who speak more about the problems they faced with the ex- colleagues

I came across 10-15 % interviewers of this kind.they won't be satisfied with any kind of answers. But there are good opportunity to get job also from this people. Can tell an example might be they are not satisfied with 14 previous interviews and if you performed bit better than previous 14 this people might offer you the Job. This kind of interviewer will give you very less opportunity to talk. They will only blame about what went wrong when previous employee did the job. They only talk about the problems they faced during last 6-10 months. They don't want to listen to the candidate skills or passion. My advice is if you get an offer from such kind of people stay away from that. Because they will not be happy with you after 6 months of job. They always want more. Like if the system is not working after 5.30 pm this people want you to work and finish the job, but they won't be ready to pay any kind of compensation. If your work is staring at 9 am you need to be office at 9 am.

Like employers have opportunity to select the candidates, candidates are also need to decide which employee they want to work for. Because if you have a real passion for your work some categories of people will make you as a person who hates jobs

I this 4 category if you get in first category or third category you will really get some opportunity to enjoy the work. 2nd category is in tolerable range but stay away from 4th category.

At the mean time if you are an interviewer please identify which group you belong.

Comments

Popular posts from this blog

How to write secure mvc application using encrypting URL

There are lots ways available to write the secure Mvc application. In my experience I came across lots of secure application in public facing. I want to tell about some of the mechanism I followed. 1- encrypting the URL Parameters and preserving id's encrypted on the client side 1- I always make sure if I pass Id or any sensitive data into the view always make sure it's encrypted. By doing so make sure if we forced to use HTML.hidden or HTML.hidden for have the encrypted values, in action link if I pass any parameters from the client side (eg:- edit or create or navigating between different actions we can make sure that all the values are encrypted) During the design of the actions results if it's http get I usually encrypt the sensitive data [httpget] Public actionresult display() { TestModel testModel=new TestModel(); testModel.id= encrypt(id); Return View(testModel); } [httppost] Public ActionResult Display(string id) { Guid d_id= new Guid(decrypt(id));

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

Sql Server Internals - Named Pipes

Named pipes enables clients applications to request a reliable and two way connection between the client application and Sql Server, across a network. A named pipe has a name which follows the UNC naming convention : \\Server\pipe\name The default names pipe for SQL server is :                 \\Server\pipe\sql\query A named instance would have a named pipe of                \\server\pipe\MSSQL$instancename\sql\query Early versions of SQL Server only provided Named Pipes. Named Pipes also allows for impersonation of a clients credentials. The feature is used by SQL server when using Linked Servers. The clients logon credentials are passed across to the Linked Server for authentication. Named Pipes can operate over TCP/IP, NETBEUI or IPX as it indirectly relies on the Common Internet Files Sytems