How to Deal With Negative Questions in the Job Interview

02/01/2010

You feel prepared for the interview. You are confident walking through the door to meet your interviewer. You have your positive experiences and stories ready to answer questions.

The interview followed the interview smoothly when all of the sudden started throwing "curve balls." Began the interview by the negative example of the situation demands - sometimes you fail or have problems of response.

About your disability and access are ready to talk when challenged in a difficult situation. You become disoriented and lose the trust of our customers. The lost two opportunities to get a second interview - or provide.

Most researchers are not trying to be tough when requesting information on the negative - trying to discover if there

So what do you do when you encounter those "curve balls?" You deal with them in a positive manner.

Here is an example of a question seeking negative information and how to deal with it.

Question –

"Tell me about a time when you had a conflict with someone at work and how you resolved it."

Answer –

"I usually get along very well with almost everyone."

"There was an incident that happened with a person who was not pulling his weight on the team and it was affecting morale. All the team members were getting disgruntled but nobody was doing anything about it."

"I took it upon myself to have a talk with the person when the opportunity presented itself. It didn't start out smoothly – he was defensive at first and resented my speaking to him about his work behavior. I was careful to let him know that I wasn't judging him but rather was concerned about the team and the ability for everyone to get along."

"Eventually he confided in me that he had some family problems at home that were affecting his energy level and patience. I listened attentively while he told me about his problems."

"Once he became aware that his behavior was affecting other's work he made a special effort to be more open and receptive. The team spirit improved greatly after that – as well as the productivity."

If this is your answer carefully, you see that offers many positives. The answer is to start using positive statements:

Next, the positive use of the word is about the style: "I make sacrifices ....

This example also shows a sense of caring about fellow employees – taking the time to find out what the problem was and being a real "team player."

You can see that there is a good deal of positive information that can be emphasized in an answer - even if it is an example of a time when things were negative.

Sometimes interviewers are trying to avoid making a hiring mistake that was made in the past.

Have made the event that there are problems in the past with this company, see evidence that these problems will be no obstacle for you. You have the interviewer that you do what you must do to solve a problem or at least get the facts about the problem, is shown.

Turning negatives into positives is an important skill to learn. When you are asked a negative question, stop and think about how you can refocus the question to include some positive qualities.

Sample answer – excerpt from "Perfect Phrases for the Perfect Interview," Carole Martin 2005 (McGraw-Hill)

Posted in: interview questions| Tags: Interview Question Information example person situation work deal team curve

Find the Top Interview Question - Give Us a Good Reason Why We Should Hire You

12/30/2009

?

If you have passed the interview you hear the number one problem, and then sit down, "Why should we hire you?" They say, is that "what you can do for this company?" It can be a difficult question to answer problem if you are caught off guard, but has not really understand it.

How to learn: the job interview

The company is seeking a person employed, you can help the company in some way, when they decided to hire you do not they need to know what you want to do for them. This is a good idea, ask yourself this question also allows you to come up with a clever answer, you are not groping around the response.

More info: Positive Work Habits

Ensure that when you are with this you come to a few very good reasons, they should hire you, the problems faced. Important to let them know exactly what you can for the company and the company will be a better place, once you are there. You should have good communication and organizational skills, because employers love a person can work there in charge.

It is also a good idea to find some news about the company or at least the industry, so you are armed with useful information if you are in the interview. The interviewer will be impressed that you are on top of the latest news in the industry, and they are more likely to rent.

One last thing to remember is not to mention pay when you interview, it will eventually come, but do not want to look greedy and that is the main focus for you.

Posted in: interview questions| Tags: Interview Question company person problem industry idea top good news

Asp.net Control: Properties

12/02/2009

Property packaged component state is rapid application development (RAD) nature. They allow users to custom design-time environment for components. The construction of the property in Visual Basic to support several versions, but not provided by an object, such as C, Java object-oriented programming language. (In the JavaBeans properties is to support an indirect access method adhere to a naming convention.) Is. NET Framework brings RAD Data Communications to simplify object-oriented programming support as a world-class programming construct object properties.

We'll look at the property construct first. Then we'll look at naming guidelines for properties and the advantages of exposing properties.

The Property Construct
Properties such as areas that are accessible through fieldlike pension but implemented using accessor methods. The following example shows a simple construction that specifies a property name public property in class Person:
public class Person {
// The private field below is not part of the property
// construct but contains data that holds the value of
// the Name property.
private string _name;
public string Name {
get {
return _name;
}
set {
_name = value;
}
}
}

The boldface elements—get, set, and value—are keywords in the C# property syntax. The compiler transforms the code in the get and set blocks into methods that are called property accessors. The get accessor—also called the getter—retrieves the value of the property, while the set accessor—also called the setter—assigns a value to the property. The value identifier denotes the implicit parameter that is passed into the setter.

C# does not have a keyword named property. However, Visual Basic .NET does use the Property keyword as shown in the following example, which shows the keywords in Visual Basic .NET property syntax in boldface:
Private String _name
Public Property Name() As String
Get
Return _name
End Get
Set (ByVal value As String)
_name = value
End Set
End Property

In contrast with C#, value in Visual Basic .NET is not a keyword in property syntax.

Although the get and set accessors are equivalent to methods, they cannot be invoked as methods in C# and Visual Basic .NET but are indirectly accessed by code that assigns or retrieves a property.

The syntax for setting a property is the same as that for setting a field. When you are setting a property, the assigned value must match the declared type of the property:

Person aPerson = new Person();
aPerson.Name = "John"; //Type of Name is string.

The property construct allows you to abstract the storage and implementation of a property from the clients of your component. In our example, a private field holds the data for the Name property. While the backing data for a property is often a private field, the data could reside elsewhere—for example, on disk or in a database—or it could be generated dynamically, as in a property that returns the system time.

Attribute can be defined get and set accessors, or just a single access device. Only get access to an attribute is a read-only attribute, and only set accessor attribute is a write-only property. Although the CLR allows write-only attribute. NET Framework Design Guidelines to stop them. If your component requires a write-only property, you should implement a method, rather than the property provide the same functionality.

A property can have any access level allowed by the runtime, including public, private, protected, or internal. In C# and Visual Basic .NET, the access level of a property applies to both accessors; it is not possible to have a different access level for each accessor.

Although the get and set accessors can not directly access methods, they are semantically equivalent method. In addition, they can perform any program logic, is covered, and throw an exception. In the next two sections, we will tell you how to override the property and property accessor of value for examination.

Posted in: asp.net| Tags: Programming string Property person name class value asp construction rad

Job Interview Questions You Need To Ask

11/30/2009

So, you have a second and third recall of the new position. When you are ready to finally interview you also need to get your questions ready. Yes, you need to ask the question, they need to consider and be prepared to show the best person to employ your abilities. Raised a good issue to show your wisdom and positive attitude, your career.

In addition to this question, for more information about it was the right questions can help do a better job. Need to question

Q: Do you under pressure, "I function very well pressure. This makes me a good candidate for your company. Told me some of the pressure situation, I can be expected that occur in this position?"

There are very few jobs today that don't place the employee under stress from time to time. This is a good question to ask and requires a thoughful response from your potential employer. Anybody can do well in calm times. You want to project a calm sense of being able to work under pressure and discussing this calming shows this skill.

How well do you know I'm a Fit learned very compatible with the company vision and the people I know so far. Since I am a team player, you can tell me more about the culture from day to day, especially in terms of team building and supporting a team?

Among equally qualified candidates, this is probably the most important attribute employers look to when hiring. Many companies today hire for compatibility to the corporate culture. You need to demonstrate you will fit with the team and be a productive member, someone who will add to the team and not be a distraction.

You are looking for your show are the best fit for the job. If this third and final interview, you have a good understanding of the culture: calm or energetic, hilarious, or quiet, etc. Moderate your responses, body posture and a voice to imitate the culture.

To prepare for your final interview, as if you are a journalist. To seek information, well prepared and ready for your question, in order to plan their vocational skills and take you to the best individuals to employ the former. 6-8 to prepare good question. Write down your laptop. Gage is how to interview and select the best question of the case 4-5.阅读.

Listen carefully to each of the anwers.Modify your questions based on the answers; follow up.

Not only will you demonstrate you abilities you will also benefit from feeling more in control of your job search!

Posted in: interview questions| Tags: Interview Question Issue job time person position raised recall pressure

The Problems With Resume Writing

11/23/2009

One day I read a lot on my resume. From the information technology industry, I have seen some very crazy abbreviations, technical and program involved a lot of confusing terminology to be plugged. Here is an example of"Proficient in the following languages and operating platforms: C, C++, DOS, MVS, CICS, ISPF/VS, DB2, OS/2, OS/400, AIX, UNIX, Java, JavaScript, Perl, Basic, HTML, DHTML, XHTML, XML, PHP, PDP, JCL, SQL, George 3, Win95/98/Me/XP/VISTA, etc." Sounds pretty impressive doesn't it? The problem is verifying that the person does, in fact, know these things. Most of the time I've found they might have nothing more than a rudimentary knowledge of the subject which is why we recommend testing the applicant as opposed to just taking his/her word for it.

I also feel very annoyed, when a person uses language to describe themselves in detail. For example, whenever someone said they were "senior software engineer," This simply means that he is only with the work of two or more programmers in his belt. Some people add so many adjectives to describe their credentials as well as their success (not their failures) boast, you would think he was the second coming of Christ. Whenever I see this, I ask myself,"If this person is so great, why isn't he running his own company; why does he need a job from me?" Touting ones' successes is natural, but a little humility in the presentation of the resume would sure be refreshing.

I may not be an expert in preparing resumes, but I think the ones that appeal to me most are those that are simple and to the point. Frankly, if they cannot keep it to one page that isn't too busy looking, I think people will lose interest. I know I do. If I want additional detail, I'll ask for it. Tell me plain and simple: What are you interested in doing? What's your background? (your employment history) and What do you know? (your skill set). I don't want to know how you conquered neuro-electronic fusion systems based on a hashing algorithm you invented; do not try to baffle me with your brilliance. Just tell me how you can do a job for me and blend into the corporate culture. I think team accomplishments are still valued over individual achievement by most employers today.

Posted in: dhtml| Tags: Technology Information Problems example person industry program lot resume day

Making an RSS Feed

11/20/2009

What Is RSS?

How does RSS work or delivery? You have about a particular topic, say issuing a new Web page. Topics that other people will be interested to know about it. Your RSS file

What does RSS stand for? There's a can of worms. RSS as introduced by Netscape in 1999 then later abandoned in 2001 stood for "Rich Site Summary." Another version of RSS pioneered by UserLand Software stands for "Really Simple Syndication." In yet another version, RSS stands for "RDF Site Summary."

History buffs might be interested that there's been some rivalry over who invented RSS. This is why we have both different names and indeed different "flavors" or versions of RSS. Mark Pilgrim's written an excellent article, What Is RSS, that charts the different versions with recommendations on which to use. I'll also revisit the version choice you'll need to make. But first, let's look more closely at some basics of what goes into any RSS file.

How Easy Is RSS?

I've been exploring RSS because it was time that Search Engine Watch offered its own stories in this manner. I've read several tutorials about making a feed, and they generally suggest that it is easy. They often offer code that you can "cut-and-paste" and link over to specifications that I actually don't find that clear.

For example, the RSS 2.0 specification has an "cloud" element that's optional but which a lay person might still wonder if they should use it. Meanwhile, heaven help the person who stumbles into the RSS 1.0 specification and its complicated RDF syntax.

Sure, making an RSS file IS easy for many. If you understand HTML, you'll probably understand enough to do a cut-and-paste from someone else's RSS file to make your own file. Don't know HTML? Start a blog, because several blogging tools automatically generates RSS files.

For those who use non-WYSIWYG web page building tools or personal home page building systems technical staff, and confidence. Even if you can create an RSS file from scratch, as long as you have the extra features, you may not need some exemptions. We will how to do this below. Later, I will mention some of the tools, and even do some or all of your work.

The RSS File

At the heart of an RSS file are "items." No matter what version of RSS you settle on, your file will have to include at least one item. Items are generally web pages that you'd like others to link to. For example, let's say you just created a web page reviewing a new cell phone that's being released. Information about that page would form an item.

To enter your item into the RSS file, you'll need three bits of information:

* Title

* Description

* Link

Requires a precise description of the item title or to see the items on the Web page's HTML tags do not match the title, and description meta tags, they do not know (what I assume is what you use ? of my HTML tags to see the article about how to use what). Any title and description, we can write a page describing. However, the title of your page using the meta description tag, and certainly easy to copy, RSS feeds to create a paste.

In the case of our example page, let's say this is the information we settle on to define it as an item:

Nokia 3650 Combines Phone And Photos

I've been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

http://allgadgetsreviewed.com/nokia3650.html

Now we have to surround XML tags and their information. These HTML tags are exceptions, HTML, unlike XML which does not exist to set a definition similar to the tag. Anyone can configure a specific XML tags. Is convenient if the resulting XML file is read depends on the program. RSS feed is an XML tag is defined, and set their own feed. To correct them, read RSS feeds that information to understand and use?

Did that make your head spin? If so, don't reread -- just carry on to see how simple it is. First, open a text editor like Notepad. We're going to build our RSS file using it.

For your title, you need to start it with thetag, then follow this with the text of the title, then end with thetag. It looks like this:

Nokia 3650 Combines Phone And Photos

For your description, you do the same, starting out with the openingtag, then following with the actual description, then "closing" with thetag. Now you have this:

Nokia 3650 Combines Phone And Photos

I've been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

Next, we add the link information, beginning with , following with the actual hyperlink, then closing with . That gives us this:

Nokia 3650 Combines Phone And Photos

I've been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

http://allgadgetsreviewed.com/nokia3650.html

Now there's one more thing we need to do. We actually have to define all this information as forming a particular "item," which we do using a special item tag.

You place the opening item tag,at the top or start of all the information we've listed. You then place the closing item tag, , at the bottom or "end" of the item information. The finished product looks like this:



Nokia 3650 Combines Phone And Photos

I've been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

http://allgadgetsreviewed.com/nokia3650.html



Congratulations! You've now made your first item. There's a bit more to do to finish our RSS file. First, what if we have other items we want to syndicate? Then we simply add more item elements, just as we did above. You can have up to 15 items. New items tend to be inserted at the top, with old items removed from the bottom, to make room for new stuff.

With our example, let's see how things look if we add two more items:



Nokia 3650 Combines Phone And Photos

I've been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

http://allgadgetsreviewed.com/nokia3650.html





Sanyo Tablet PC Amazes!

I was dubious about the new Tablet PCs, but then I saw the latest from Sanyo. Wow, cool looks and it works!

http://allgadgetsreviewed.com/sanyotablet.html





Canon MegaTiny Digital Camera Too Small

OK, there is a limit to just how small is too small. Canon's MetaTiny, no larger than a quarter, simply is too little to use properly

http://allgadgetsreviewed.com/metatiny.html



Having defined items we want to distribute, we now have to define our site as a "channel." You'll use the same tags as with the items: title, description and link. However, this time the information will be about your entire site, rather than a particular page. That means our channel information would look like this:

All Gadgets Reviewed

If it's a gadget, we review it. Learn what gadgets are hot and what's not!

http://allgadgetsreviewed.com

Now, how does something reading our RSS file know that the information above is for our "channel" when it looks just like item information? Simple. As long as we don't surround this information with an opening and closingtags, it won't be seen as item information but rather as channel information. That gives us this:

All Gadgets Reviewed

If it's a gadget, we review it. Learn what gadgets are hot and what's not!

http://allgadgetsreviewed.com



Nokia 3650 Combines Phone And Photos

I've been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

http://allgadgetsreviewed.com/nokia3650.html





Sanyo Tablet PC Amazes!

I was dubious about the new Tablet PCs, but then I saw the latest from Sanyo. Wow, cool looks and it works!

http://allgadgetsreviewed.com/sanyotablet.html





Canon MegaTiny Digital Camera Too Small

OK, there is a limit to just how small is too small. Canon's MetaTiny, no larger than a quarter, simply is too little to use properly

http://allgadgetsreviewed.com/metatiny.html



There are a few last things we need to do. First, we need to add a tag at the very top of the file saying that this is written according to the XML 1.0 specifications. Right under this, we also have to say what RSS version we are using.

So far, everything we've done is compatible with UserLand's popular RSS 0.91 version. However, it also matches UserLand's latest RSS 2.0 version, as well, so we'll define the file as meeting that specification. This will allow us to add other neat features in the future, if we want.

Finally, after the RSS tag, we need to add an opening "channel" tag. That gives us this at the top of the file:







At the bottom of the file, after all the items we want to syndicate, we have to insert a closing channel and RSS tag, in that order. Those look like this:

This means our complete file looks like this:







All Gadgets Reviewed

If it's a gadget, we review it. Learn what gadgets are hot and what's not!

http://allgadgetsreviewed.com



Nokia 3650 Combines Phone And Photos

I've been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

http://allgadgetsreviewed.com/nokia3650.html





Sanyo Tablet PC Amazes!

I was dubious about the new Tablet PCs, but then I saw the latest from Sanyo. Wow, cool looks and it works!

http://allgadgetsreviewed.com/sanyotablet.html





Canon MegaTiny Digital Camera Too Small

OK, there is a limit to just how small is too small. Canon's MetaTiny, no larger than a quarter, simply is too little to use properly

http://allgadgetsreviewed.com/metatiny.html







Mind Blowing Options

Everything shown above is the bare basics you need to create a file and start syndicating content from your web site. However, there are additional things you could do.

For example, rather than your entire web site being a "channel," you could actually have different content from within the web site be defined into separate channels. That's something I'm not going to explore in this article, but some of the resources below will guide you through this, when you feel more comfortable.

As suggested, RSS 2.0 allows you to insert any kind of additional information in your feed. It is your heads and watch them spin, you can decide what to use. The simple answer is, please do not worry about what you do not know. Provide all the options not all aggregators. Above proposal to provide only minimal information, but should be fine.

Did I Choose The Right RSS Version?

Earlier, I'd mentioned there are different versions of RSS. Even though we entered the bare minimum of information, it turned out that we were able to have a file that was easily considered to be RSS 2.0, the latest version promoted by UserLand and which is widely used.

Indeed, the Syndic8 site reports that the most popular format of RSS by far is RSS 0.91 -- and though we've used RSS 2.0, our file as shown is entirely compatible with RSS 0.91. In short, we're in safe company.

What about that RSS 1.0 version that I said was complicated. Well, it is complicated. However, some people might want to make use of some of the special capabilities that it offers. If you are interested in it, then check out the official specification.

Saving The File

Now that we're done adding to the file, we need to save it. But what name shall we give it? I've looked and not seen any guidance on this. I imagine that's because as long as the file is valid (more below), it probably doesn't matter what it's called.

To make my own decision for Search Engine Watch, I decided to imitate what I saw out at UserLand, which promotes the RSS 2.0 standard that we used. UserLand's example feeds all ended .xml, so let's do the same. As for the first part, that really can be whatever you like. For our example, let's say we just call it feed.xml.

Now that our file is saved, we can place it anywhere we want on our web server. Let's say we put it in the root or home directory. Then the address to our RSS file would be:

http://allgadgetsreviewed.com/feed.xml

Validating The File

Now our RSS file is done, but did we do it right? To find out, we need to validate it. Use the aptly named Feed Validator service. Simply enter the address to your RSS file, and you'll be told if everything is OK -- or if there's something wrong you need to fix.

How about a quick preview of how your new feed actually looks? Then pay a visit to Wytheville Community College News Center. Again, enter your feed URL, and you'll see the clickable headlines and story descriptions nicely assembled inside a box.

The service will also generate a JavaScript code that you can post on your site. Anyone copying the JavaScript can automatically have your feed syndicated into their pages -- pretty neat!

Get Syndicated!

Now that your file is validated, you want the world to know about it! To make this happen, visit the RSS directories and search engines listed in the RSS: Your Gateway To News & Blog Content article. They generally offer submission pages, where you can inform them of your feed.

You also want to make sure people who come to your web site see that you provide a feed. It's very common to post a link to the feed somewhere on the home page of a web site. If you have a dedicated news page, you may want to put it there, as well.

You can link to your feed using a normal HTML link. However, many websites have a small orange XML button to use to the feed link. I've also seen some sites with a blue RSS icon. I could find no standard about using these. So, to be sure I have all three of Search Engine Watch. Search on the homepage, and you'll see how it's done (and help yourself to the icons, when you need it).

Finally, it's good to "ping" one of the major services that track when web logs and RSS content changes. By doing this, you ensure that other sites that monitor these know to check back at your site for more content.

Weblogs.com is one of these major sites. Enter your site's name and the URL of your feed into the manual Ping-Site Form, and it will know you've updated your feed. The Specs page explains how to set up automatic notification.

blo.gs is another major change monitoring site. It is supposed to receive any changes that come from Weblogs.com, so you shouldn't need to notify it separately. However, if you want to be on the safe side, it's easily done. Use the ping form, which also explains how to set up automatic pinging, as well.

Tutorials & Resources

RSS Headline Creator, you can skip and manually coding the number of headlines you want to choose your file, up to the 15 maximum allowed. Then a form with fields that you be made complete. Enter the correct information, then press the

How To Get Your Web Site Content Syndicated is a Dec. 2002 tutorial by Kalena Jordan and Dan Thies from which I drew inspiration to get my own feed going.

Syndic8's How To Section lists a variety of tutorials that discuss how to build RSS files.

Content Syndication with RSS is a book by Ben Hammersley that was just released in March 2003. I haven't read it, but everything I've heard is that it should be excellent.

RSS Resources Directory from UserLand categorizes helpful information related to RSS, in different categories.

Postscript: Search Types: Blogs & Feeds and SEO: Feeds are sections of the Search Topics area available to Search Engine Watch members with lots of information on the topic of feeds since this article was originally written.

http://freeadvertise.co.nr

Posted in: javascript tutorial| Tags: person web work summary version delivery topic rss specification feed

Get The Advantage Of Ccip Training To Get A Career Advantage

11/16/2009

To fill the IT job market, a new job every day, IT, and ahead of the market to find the necessary qualifications to secure work late in the race behind him the appropriate person if the present not have to. If your credentials are correct and if necessary, and training, IT certification in all of the hurdles in the field not to have taken to get a job. One way to obtain the necessary qualifications to obtain the training and CCIP.

All the way round CCIP training courses, preparing the individual. Later, the participants completed the Cisco training has been given a training certificate. Certificate and your resume after the Cisco training certificates, and asked to give a very much needed benefits.

The professionals with Cisco certification training will be preferred by employers and they will be able to secure jobs much easier than the other candidates with different qualifications. Therefore, it is rightly said that a person who CCIP training will have a definite career advantage.

There are many certification bodies to provide you with the interests of industrial and commercial training in Paris. In fact, you can find some of them via the Internet itself, the Institute's address. However, taking into account any recognition of these institutions are made, Cisco courses offered by the type of research to see how they are related. In order to become Cisco training courses, Cisco to provide the most relevant for admission to courses.

The Cisco Training Class offering the CCIP training teaches all the end-to end protocols that are used in the large-scale networks. To be eligible to get the Cisco certificate training in the CCIP field the learner must clear all the tests in the areas of routing MPLS, BGP, Quality of Service and also the routing exam that is from the CCNP track.

CCIP Training includes both the Local Area Network (LAN) and Wide Area Network (WAN). Those in the Cisco training class are trained ready to provide not only the service for the customers, but also complete solutions. While the students are taught the essential elements of wireless network security training and they can also have a selection of other courses such as voice and data cabling, courses in Web design, IT Fundamentals, Java programming, UNIX Basics and the traditional CCNA and CCNP. Therefore, the CCIP training a person makes a thorough professional.

For more information, please visit the websites like www.coursefox.co.uk.

Posted in: java training| Tags: Career Training job certification person way market advantage cisco ccip

Great Answers to Tough Job Interview Questions

11/13/2009

Would you say you’re a glass-half-empty person or a glass-half-full?

For more interviews positive mental attitude is almost an obsession. Find a way to show your own, and talk about the difference it can make.

It is true that we are building our position in our approach to events that have affected how things off.

If we want to do our best to help others to do the same, we have the attitude that start each equipped with the ability to succeed. Well, how you do it in the answer to the question of an interview?

WE CAN MAKE IT HAPPEN

Behind this question is a relatively passive investigation. The supplementary question may be in an area you how to deal with setbacks, when things are not going your behavior, as well as they could. Therefore, starting a huge smile and assurance, you are a very positive, natural person. Then use your people know who to pass to other examples of people's attitudes. Try to give them everything that the attitude to carry out practical activities, rather than any of the tiny example.

‘At heart I’m definitely an optimist. I’ve worked with both types of people. I’ve worked with a team leader who was a terrible pessimist and moaner. He was always criticising the company and the people in it. I had to keep reminding myself that nothing was as bad as he was making out; but some people in the team got infected with the glass-half-empty bug, and didn’t enjoy their work. I know our performance suffered as a result. I’ve also worked with a woman who was the opposite. She refused to use the word “problem”, and put messages on the board saying, for example, that “I can’t” or “we can’t” were both banned phrases. We all expected to succeed in her environment and we did.’

This is an area in which an analogy may be useful to the sport:

AND WHEN THE GOING GETS TOUGH?

A person who expects everything to go right at work is not an incurable optimist so much as a fool. They’ll probe for your response to adversity. ‘How do you handle rejection?’ This is particularly asked of customer-facing people in a competitive industry. If they can’t handle losing a few then they should be in another profession: ‘I think that being rejected from time to time is part of the process of being a salesperson. After all, if every customer said ‘yes’ the company wouldn’t need a sales force in the first place. I try to take responsibility for a loss without taking it as a personal rejection. That way I can move on knowing that I’m one campaign closer to my next sale.’

Another way to probe for negativity is, ‘Why do you want to leave your job?’ It’s quite possible to answer this one positively, even though you are leaving because of the lack of something. Just show how there is nothing anyone can do about your reason for leaving: ‘It’s a small business. I’ve learnt what I can from it and there is no advancement possible.’ Or: ‘The job was interesting when I started, and I’ve enjoyed doing it and being successful; but I think the time has come to tackle something more challenging.’

For more information visit: http://www.infideas.com/self-development/interviews/

?

Posted in: interview questions| Tags: Interview Question job person way talk difference obsession attitude position

Hot Posts

Latest posts

Tags

Others

Sponsors

asp.net interview questions