<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Prepare 4 interview - Recent questions without answers</title>
<link>http://prepare4interview.com/unanswered</link>
<description>Powered by Question2Answer</description>
<item>
<title>what job related organizations do your belong to (trade, professional, etc.)</title>
<link>http://prepare4interview.com/1800/what-related-organizations-your-belong-trade-professional</link>
<description>exclude memberships that would reveal race, color, religion, sex, national origin, citizenships, age, mental or physical disabilities, veteran/reserve National Guard or any other similarly protected status.</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1800/what-related-organizations-your-belong-trade-professional</guid>
<pubDate>Fri, 09 Mar 2012 18:13:21 +0000</pubDate>
</item>
<item>
<title>TELL ME SOMETHING ABOUT YOURSELF</title>
<link>http://prepare4interview.com/1786/tell-me-something-about-yourself</link>
<description>GIVE ME SUGGESTETION WHAT TO ANSWER</description>
<category>SQL Server Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1786/tell-me-something-about-yourself</guid>
<pubDate>Sun, 20 Nov 2011 05:17:37 +0000</pubDate>
</item>
<item>
<title>What is Unix?</title>
<link>http://prepare4interview.com/1780/what-is-unix</link>
<description>What is UniX</description>
<category>UNIX Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1780/what-is-unix</guid>
<pubDate>Thu, 22 Sep 2011 07:21:51 +0000</pubDate>
</item>
<item>
<title>How would you deal with a bug that no one wants to fix? Both the SDE and his lead have said they won't fix it.</title>
<link>http://prepare4interview.com/1774/would-deal-with-that-wants-both-and-his-lead-have-said-they-fix</link>
<description></description>
<category>Other Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1774/would-deal-with-that-wants-both-and-his-lead-have-said-they-fix</guid>
<pubDate>Fri, 05 Aug 2011 17:37:04 +0000</pubDate>
</item>
<item>
<title>How would you deal with changes being made a week or so before the ship date?</title>
<link>http://prepare4interview.com/1773/would-you-deal-with-changes-being-made-week-before-ship-date</link>
<description></description>
<category>Other Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1773/would-you-deal-with-changes-being-made-week-before-ship-date</guid>
<pubDate>Fri, 05 Aug 2011 17:35:46 +0000</pubDate>
</item>
<item>
<title>what is the retail banking?</title>
<link>http://prepare4interview.com/1772/what-is-the-retail-banking</link>
<description>what is the retail banking?</description>
<category>SQL Server Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1772/what-is-the-retail-banking</guid>
<pubDate>Wed, 27 Jul 2011 10:17:09 +0000</pubDate>
</item>
<item>
<title>i am a mca 2011 batch pass out and i want to join a job in a software industry?</title>
<link>http://prepare4interview.com/1760/am-mca-2011-batch-pass-out-and-want-join-job-software-industry</link>
<description></description>
<category>Job Openings</category>
<guid isPermaLink="true">http://prepare4interview.com/1760/am-mca-2011-batch-pass-out-and-want-join-job-software-industry</guid>
<pubDate>Tue, 21 Jun 2011 11:47:37 +0000</pubDate>
</item>
<item>
<title>What are all the best practices you follow in SQL server which will increase the performance ?</title>
<link>http://prepare4interview.com/1714/what-practices-follow-server-which-will-increase-performance</link>
<description>1. Create a primary key on each table you create and unless you are really knowledgeable enough to figure out a better plan, make it the clustered index (note that if you set the primary key in Enterprise Manager it will cluster it by default). &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;2. Create an index on any column that is a foreign key. If you know it will be unique, set the flag to force the index to be unique. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;3. Don’t index anything else (yet). &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;4. Unless you need a different behaviour, always owner qualify your objects when you reference them in TSQL. Use dbo.sysdatabases instead of just sysdatabases. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;5. Use set nocount on at the top of each stored procedure (and set nocount off) at the bottom. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;6. Think hard about locking. If you’re not writing banking software, would it matter that you take a chance on a dirty read? You can use the NOLOCK hint, but it’s often easier to use SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED at the top of the procedure, then reset to READ COMMITTED at the bottom. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;7. I know you’ve heard it a million times, but only return the columns and the rows you need. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;8. Use transactions when appropriate, but allow zero user interaction while the transaction is in progress. I try to do all my transactions inside a stored procedure. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;9. Avoid temp tables as much as you can, but if you need a temp table, create it explicitly using Create Table #temp. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;10. Avoid NOT IN, instead use a left outer join - even though it’s often easier to visualize the NOT IN. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;11. If you insist on using dynamic sql (executing a concatenated string), use named parameters and sp_executesql (rather than EXEC) so you have a chance of reusing the query plan. While it’s simplistic to say that stored procedures are always the right answer, it’s also close enough that you won’t go wrong using them. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;12. Get in the habit of profiling your code before and after each change. While you should keep in mind the depth of the change, if you see more than a 10-15% increase in CPU, Reads, or Writes it probably needs to be reviewed.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;13. Look for every possible way to reduce the number of round trips to the server. Returning multiple resultsets is one way to do this. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;14. Avoid index and join hints. &lt;br /&gt;
&amp;nbsp;&amp;nbsp;15. When you’re done coding, set Profiler to monitor statements from your machine only, then run through the application from start to finish once. Take a look at the number of reads and writes, and the number of calls to the server. See anything that looks unusual? It’s not uncommon to see calls to procedures that are no longer used, or to see duplicate calls. Impress your DBA by asking him to review those results with you.</description>
<category>SQL Server Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1714/what-practices-follow-server-which-will-increase-performance</guid>
<pubDate>Sun, 31 Oct 2010 08:11:09 +0000</pubDate>
</item>
<item>
<title>This is One of good interview question</title>
<link>http://prepare4interview.com/1713/this-is-one-of-good-interview-question</link>
<description>Refer&lt;br /&gt;
http://skife.org/interviews/design/2010/10/27/favorite-interview-question.html</description>
<category>General Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1713/this-is-one-of-good-interview-question</guid>
<pubDate>Sat, 30 Oct 2010 08:18:12 +0000</pubDate>
</item>
<item>
<title>Have you ever used MySQL Administrator and MySQL Query Browser?</title>
<link>http://prepare4interview.com/1375/have-you-ever-used-mysql-administrator-mysql-query-browser</link>
<description></description>
<category>MySQL Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/1375/have-you-ever-used-mysql-administrator-mysql-query-browser</guid>
<pubDate>Mon, 27 Sep 2010 13:01:53 +0000</pubDate>
</item>
<item>
<title>SSIS - What various transformation do?</title>
<link>http://prepare4interview.com/880/ssis---what-various-transformation-do</link>
<description></description>
<category>SSIS Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/880/ssis---what-various-transformation-do</guid>
<pubDate>Mon, 26 Jul 2010 15:16:52 +0000</pubDate>
</item>
<item>
<title>Will XAML replace other programming languages like C# and VB?</title>
<link>http://prepare4interview.com/630/will-xaml-replace-other-programming-languages-like-c%23-and-vb</link>
<description>No. XAML complements procedural languages, much the same way HTML complements ECMAScript. You can very quickly declare how you want your user interface to look with XAML, then use a language like C# to define the business logic behind that user interface</description>
<category>.NET Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/630/will-xaml-replace-other-programming-languages-like-c%23-and-vb</guid>
<pubDate>Fri, 23 Jul 2010 12:50:01 +0000</pubDate>
</item>
<item>
<title>what is the webservice and what is the attribute used to create webservice?</title>
<link>http://prepare4interview.com/550/what-webservice-and-what-attribute-used-create-webservice</link>
<description></description>
<category>.NET Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/550/what-webservice-and-what-attribute-used-create-webservice</guid>
<pubDate>Thu, 22 Jul 2010 16:10:56 +0000</pubDate>
</item>
<item>
<title>what is access modifer? differnt access modifers in .NET</title>
<link>http://prepare4interview.com/548/what-is-access-modifer-differnt-access-modifers-in-net</link>
<description></description>
<category>.NET Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/548/what-is-access-modifer-differnt-access-modifers-in-net</guid>
<pubDate>Thu, 22 Jul 2010 16:07:38 +0000</pubDate>
</item>
<item>
<title>Give two UNIX kernel parameters that effect an Oracle install</title>
<link>http://prepare4interview.com/522/give-two-unix-kernel-parameters-that-effect-oracle-install</link>
<description></description>
<category>UNIX Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/522/give-two-unix-kernel-parameters-that-effect-oracle-install</guid>
<pubDate>Tue, 20 Jul 2010 09:32:32 +0000</pubDate>
</item>
<item>
<title>How would you change all occurrences of a value using VI, in UNIX?</title>
<link>http://prepare4interview.com/521/how-would-you-change-all-occurrences-of-value-using-vi-in-unix</link>
<description></description>
<category>UNIX Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/521/how-would-you-change-all-occurrences-of-value-using-vi-in-unix</guid>
<pubDate>Tue, 20 Jul 2010 09:32:08 +0000</pubDate>
</item>
<item>
<title>Give the command to display space usage on the UNIX file system.</title>
<link>http://prepare4interview.com/518/give-the-command-to-display-space-usage-the-unix-file-system</link>
<description></description>
<category>UNIX Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/518/give-the-command-to-display-space-usage-the-unix-file-system</guid>
<pubDate>Tue, 20 Jul 2010 09:30:23 +0000</pubDate>
</item>
<item>
<title>What UNIX command will control the default file permissions when files are created?</title>
<link>http://prepare4interview.com/515/unix-command-control-default-permissions-when-files-created</link>
<description></description>
<category>UNIX Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/515/unix-command-control-default-permissions-when-files-created</guid>
<pubDate>Tue, 20 Jul 2010 09:29:06 +0000</pubDate>
</item>
<item>
<title>What have you done to make your subordinates’ jobs easier or more rewarding?</title>
<link>http://prepare4interview.com/411/what-have-make-your-subordinates-jobs-easier-more-rewarding</link>
<description>What have you done to make your subordinates’ jobs easier or more rewarding?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/411/what-have-make-your-subordinates-jobs-easier-more-rewarding</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>In your mind, what is the greatest thing that distinguishes a superior employee from someone who gives typical good performance?</title>
<link>http://prepare4interview.com/413/greatest-distinguishes-superior-employee-typical-performance</link>
<description>In your mind, what is the greatest thing that distinguishes a superior employee from someone who gives typical good performance?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/413/greatest-distinguishes-superior-employee-typical-performance</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What did you do to help your subordinates set performance objectives last year?</title>
<link>http://prepare4interview.com/410/what-help-your-subordinates-performance-objectives-last-year</link>
<description>What did you do to help your subordinates set performance objectives last year?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/410/what-help-your-subordinates-performance-objectives-last-year</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What have you done to make your group work more smoothly and efficiently?</title>
<link>http://prepare4interview.com/412/what-have-done-make-your-group-work-more-smoothly-efficiently</link>
<description>What have you done to make your group work more smoothly and efficiently?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/412/what-have-done-make-your-group-work-more-smoothly-efficiently</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>In your previous jobs, how have you dealt with chronically late employees?</title>
<link>http://prepare4interview.com/407/your-previous-jobs-have-dealt-with-chronically-late-employees</link>
<description>In your previous jobs, how have you dealt with chronically late employees?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/407/your-previous-jobs-have-dealt-with-chronically-late-employees</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What are the important things your department has contributed to the organization in the last year?</title>
<link>http://prepare4interview.com/406/important-things-department-contributed-organization-year</link>
<description>What are the important things your department has contributed to the organization in the last year?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/406/important-things-department-contributed-organization-year</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>How would you handle a performance problem with your best employee? Your worst employee?</title>
<link>http://prepare4interview.com/408/would-handle-performance-problem-employee-worst-employee</link>
<description>How would you handle a performance problem with your best employee? Your worst employee?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/408/would-handle-performance-problem-employee-worst-employee</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>Describe a situation in which one or more subordinates had roles in the decision-making process.</title>
<link>http://prepare4interview.com/409/describe-situation-subordinates-decision-making-process</link>
<description>Describe a situation in which one or more subordinates had roles in the decision-making process. How did you make use of their contributions?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/409/describe-situation-subordinates-decision-making-process</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What do you see as the biggest opportunity in this job? How would you maximize it?</title>
<link>http://prepare4interview.com/416/what-the-biggest-opportunity-this-job-how-would-you-maximize</link>
<description>What do you see as the biggest opportunity in this job? How would you maximize it?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/416/what-the-biggest-opportunity-this-job-how-would-you-maximize</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What skills or characteristics do you have that you feel would be especially useful if you were the successful candidate for this position?</title>
<link>http://prepare4interview.com/420/characteristics-especially-successful-candidate-position</link>
<description>What skills or characteristics do you have that you feel would be especially useful if you were the successful candidate for this position?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/420/characteristics-especially-successful-candidate-position</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>Is there anything that surprised you about the interview? About the University?</title>
<link>http://prepare4interview.com/421/there-anything-surprised-about-interview-about-university</link>
<description>Is there anything that surprised you about the interview? About the University?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/421/there-anything-surprised-about-interview-about-university</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What factors do you consider most important in judging a subordinate’s performance?</title>
<link>http://prepare4interview.com/414/factors-consider-important-judging-subordinate-performance</link>
<description>What factors do you consider most important in judging a subordinate’s performance?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/414/factors-consider-important-judging-subordinate-performance</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>How does this position fit into your career plans?</title>
<link>http://prepare4interview.com/419/how-does-this-position-fit-into-your-career-plans</link>
<description>How does this position fit into your career plans?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/419/how-does-this-position-fit-into-your-career-plans</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>Is there a question that we didn’t ask for which you had prepared an answer or is there something you’d like us to know that perhaps we did not ask?</title>
<link>http://prepare4interview.com/422/there-question-which-prepared-answer-there-something-perhaps</link>
<description>Is there a question that we didn’t ask for which you had prepared an answer or is there something you’d like us to know that perhaps we did not ask?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/422/there-question-which-prepared-answer-there-something-perhaps</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What do you see as the biggest difficulty in this job? How would you minimize it?</title>
<link>http://prepare4interview.com/415/what-the-biggest-difficulty-this-job-how-would-you-minimize</link>
<description>What do you see as the biggest difficulty in this job? How would you minimize it?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/415/what-the-biggest-difficulty-this-job-how-would-you-minimize</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What would you most like to accomplish if you had this job?</title>
<link>http://prepare4interview.com/417/what-would-you-most-like-to-accomplish-if-you-had-this-job</link>
<description>What would you most like to accomplish if you had this job?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/417/what-would-you-most-like-to-accomplish-if-you-had-this-job</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>What do you see as the opportunities and challenges of this position?</title>
<link>http://prepare4interview.com/418/what-you-see-the-opportunities-and-challenges-this-position</link>
<description>What do you see as the opportunities and challenges of this position?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/418/what-you-see-the-opportunities-and-challenges-this-position</guid>
<pubDate>Sat, 17 Jul 2010 19:10:42 +0000</pubDate>
</item>
<item>
<title>Have you recently attended any conferences or seminars in your field? What did you get out of them?</title>
<link>http://prepare4interview.com/394/have-recently-attended-conferences-seminars-your-field-what</link>
<description>Have you recently attended any conferences or seminars in your field? What did you get out of them?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/394/have-recently-attended-conferences-seminars-your-field-what</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>How did you choose the library profession? What rewards does it hold for you?</title>
<link>http://prepare4interview.com/396/did-you-choose-library-profession-what-rewards-does-hold-for</link>
<description>How did you choose the library profession? What rewards does it hold for you?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/396/did-you-choose-library-profession-what-rewards-does-hold-for</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>Do you have a philosophy of public service? How would you characterize it?</title>
<link>http://prepare4interview.com/395/you-have-philosophy-public-service-would-you-characterize</link>
<description>Do you have a philosophy of public service? How would you characterize it?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/395/you-have-philosophy-public-service-would-you-characterize</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>To what job-related organizations do you belong?</title>
<link>http://prepare4interview.com/392/to-what-job-related-organizations-do-you-belong</link>
<description>To what job-related organizations do you belong?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/392/to-what-job-related-organizations-do-you-belong</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>Please tell me about a great idea you have witnessed in the field of librarianship recently.</title>
<link>http://prepare4interview.com/397/please-about-great-witnessed-field-librarianship-recently</link>
<description>Please tell me about a great idea you have witnessed in the field of librarianship recently. What impressed you about it?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/397/please-about-great-witnessed-field-librarianship-recently</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>How do you keep informed about what’s happening in your field?</title>
<link>http://prepare4interview.com/391/how-do-you-keep-informed-about-what-s-happening-in-your-field</link>
<description>How do you keep informed about what’s happening in your field?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/391/how-do-you-keep-informed-about-what-s-happening-in-your-field</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>What job-related publications do you normally read?</title>
<link>http://prepare4interview.com/393/what-job-related-publications-do-you-normally-read</link>
<description>What job-related publications do you normally read?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/393/what-job-related-publications-do-you-normally-read</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>How would you define a good job in your line of work?</title>
<link>http://prepare4interview.com/402/how-would-you-define-a-good-job-in-your-line-of-work</link>
<description>How would you define a good job in your line of work?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/402/how-would-you-define-a-good-job-in-your-line-of-work</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>If you were going to evaluate your own performance, what factors would you consider most important?</title>
<link>http://prepare4interview.com/404/going-evaluate-performance-factors-would-consider-important</link>
<description>If you were going to evaluate your own performance, what factors would you consider most important?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/404/going-evaluate-performance-factors-would-consider-important</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>Do you make extra efforts to meet deadlines?</title>
<link>http://prepare4interview.com/405/do-you-make-extra-efforts-to-meet-deadlines</link>
<description>Do you make extra efforts to meet deadlines? Describe what you have done to complete a project or report on time.</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/405/do-you-make-extra-efforts-to-meet-deadlines</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>What personal performance standards do you set for yourself?</title>
<link>http://prepare4interview.com/403/what-personal-performance-standards-do-you-set-for-yourself</link>
<description>What personal performance standards do you set for yourself? What have you done to meet them? What do you do if you find yourself falling short of a standard?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/403/what-personal-performance-standards-do-you-set-for-yourself</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>What professional goals do you still want to achieve?</title>
<link>http://prepare4interview.com/401/what-professional-goals-do-you-still-want-to-achieve</link>
<description>What professional goals do you still want to achieve?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/401/what-professional-goals-do-you-still-want-to-achieve</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>If a friend asked you what you would be doing in this job, what would you say?</title>
<link>http://prepare4interview.com/399/friend-asked-you-what-you-would-doing-this-job-what-would-say</link>
<description>If a friend asked you what you would be doing in this job, what would you say?</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/399/friend-asked-you-what-you-would-doing-this-job-what-would-say</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>Give me an example of a time when you used your fact-finding skills to gain information needed to solve a problem.</title>
<link>http://prepare4interview.com/400/example-fact-finding-skills-information-needed-solve-problem</link>
<description>Give me an example of a time when you used your fact-finding skills to gain information needed to solve a problem; then tell me how you analyzed the information and came to a decision.</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/400/example-fact-finding-skills-information-needed-solve-problem</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
<item>
<title>Describe things that you have done which demonstrate your experience or ability to perform well in this job.</title>
<link>http://prepare4interview.com/398/describe-things-which-demonstrate-experience-ability-perform</link>
<description>Now that you’ve had a chance to look at the job description, please describe to me things that you have done which demonstrate your experience or ability to perform well in this job.</description>
<category>HR Interview Questions and Answers</category>
<guid isPermaLink="true">http://prepare4interview.com/398/describe-things-which-demonstrate-experience-ability-perform</guid>
<pubDate>Sat, 17 Jul 2010 19:10:41 +0000</pubDate>
</item>
</channel>
</rss>
