Skip to main content

Five ways to handle an interview over a video call

In today’s corporate world, companies are taking help of technology to erase geographical barriers. Many now conduct job interviews through video conference or over Skype. This also has made preparing for such interviews in advance essential. One wrong step and a candidate can end up losing a great job. Shreya Biswas helps you get ready for such an interview.
Core remains the same
Prepare for this interview like any other. Read about the company, do some research about the management, figure out what the job entails, what the company is looking out for in the person they will hire and get an idea about those who would be interviewing you. “The basics of an interview don’t change. The medium changes, but not the purpose,” says Naresh Chand Gupta, MD, Adobe India .
Get tech-savvy
Technology can be unpredictable, and it’s important to be prepared in advance to avoid any disruption. Learn how video conferencing equipments work. If you are planning to take the interview from home, check to see if the equipment is functioning. Practice on Skype or with video capsules. Ask a friend to review it. Spend time setting the right projection. Camera angle, light and sound should be perfect. “The conversation can get disrupted if these things are not taken care of. It can spoil the entire exercise,” explains Mr Gupta.
Dress for the occasion
Dressing casually for the interview might suggest to your potential employers that you are not serious about the process. Wear bright colours that would be distinguished on camera. Do not go in for stripes as monitors tend to create fluctuating patterns. Don’t fidget, and look into the camera constantly. By not doing so, a candidate lost a plum opportunity to be the procurement head of Schneider Electric India. “The person spoke fluently but never looked into the camera. For someone who could head an important division like procurement, he needed to be trustworthy. His lack of eye contact did not instill confidence in us,” says Shalini Sarin , head, HR, Schneider Electric who was part of the interview panel.
Cut the noise levels
The microphone can pick up the smallest of sounds, so try and give the interview in a sound-free environment. “Also, keep your phone switched off or on silent mode and avoid checking your phone messages or e-mails, even during a break. Keep a notebook handy, take down quick notes if there a series of complex queries. Reply to them slowly but don’t read out from the note pad. Pay close attention to the conversation,” says Sanjeev Duggal , CEO & executive director, Centum Learning.
Keep to time limit

Be aware of the time and make sure to cover your agenda and ask relevant questions in the allotted interview time. Don’t request information which is already available on the company website. Keep your queries precise. Remember to focus on your goals during the interview. You might just bag a great job offer.

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