Skip to main content

Dart SUCCESS at Interview

Most people go to interviews hoping to be questioned and assessed by an interviewer(s). They go anxious and worried, wondering whether they would get the job. People who get successful are different. They go well-prepared to demonstrate how they would fit into employer’s needs and bring value to their business. They go as a value provider, not as a job seeker..
Would you also like to impress your would be employer? If yes, the next time when you get an interview call, don’t lose any time and get prepared. Here is a road map…
1. Know the employer
Go to the company’s Web site and learn about its products and services. What initiatives this company is taking? Who are its competitors, and what challenges this company is facing? Read the “news” section to pick up the latest happenings there.
2. Review the job
Next, zero down to the job that you are pursuing. What are employer’s expectations in terms of responsibilities, actions and goals? Also note the job requirements–qualifications, experience and skills–employer is expecting the right candidate to satisfy.
3. Review yourself
Look at your resume and review the assets you have: your experience, education, achievements, skills, knowledge and strengths.
4. Prepare a presentation
Having done the homework, now it’s time to prepare a short PowerPoint presentation. The presentation should essentially comprise the following parts:
Part 1: About yourself
Prepare a short introduction of yours in terms of education, experience and achievements.
Part 2: Employer’s business
This part is about showing your understanding of company’s business: products, services, markets, competition, etc.
Part 3: Employer’s needs
In this part, list all of employer’s expectations-responsibilities, actions and goals—you will be expected to meet. Also talk about the challenges you will be facing in the job.
Part 4: How would you deliver?
This is the heart of your presentation where you would demonstrate how you would tackle the challenges and go on not just to meet employer’s expectations, but exceed them. To make it credible, share actual examples from your past experience and use quantitative information.
On the whole, keep your presentation limited to 10 slides and 15 minutes long.

5. Practice & Go in Prepared
The last and final step is to practice delivering the presentation. More you practice, more relaxed, confident and convincing you will be during the interview. Go in prepared; it’s your turn to enjoy success at interview!

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