Interview Questions

Q:

What role does leadership play for a manager? How have you demonstrated this with your managers?

Answer

Tips : 


The leader's role is :


To communicate the strategic vision to management with clarity


 To translate the vision into concrete direction and plans


To identify and communicate priorities, short term objectives, timelines, performance measures, clear accountabilities and performance agreements to management;


 To provide quality judgment and advice.

Report Error

View answer Workspace Report Error Discuss

16 11196
Q:

Tell me about a time that you helped someone?

Answer

Most recently, we had a new hire (Prakash) that was really struggling with getting to work on time, and I knew the boss (Dan) was getting irritated. Over lunch one day I explained to Prakash how important it was to our boss for everyone to be there at least 10 minutes early. It was personal with the Harry, but you could really get on his bad side when you were frequently late. The new employee was grateful for the advice. At his previous employment, the boss was only concerned about the work getting done on time; he/she did not "watch the clock".

Report Error

View answer Workspace Report Error Discuss

Subject: Work History

18 11014
Q:

Write SQL Query to display current date?

Answer

The built in function called GetDate() returns the time stamp.

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

22 10991
Q:

What do you mean by invoice on hold?

Answer

Invoice holds are 2 types
1)Sytem Hold               2) User Defined Holds.

Sytem Holds: Sytem holds the invoice if the Invoice Amt total is not equal to Invoice Distribution Amt. To release the hold correct the amount and again validate the invoice.

User Defined Holds: These is defined by user. If we do want to make payments to the validated invoice. Go to particular invoice and apply hold going to Holds tab.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

6 10902
Q:

How do define the user-defined exceptions?

A) inheriting and overriding exception class functionality. B) overriding class functioality.
C) inheriting class functionality D) none of the mentioned
 
Answer & Explanation Answer: A) inheriting and overriding exception class functionality.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: C++

4 10880
Q:

why did you choose HR? what do you want to make your career as HR?

Answer

HR-Human Resources:



To be a good HR person we need to have excellent  communication skills,interpersonal skills, good friendly attitude, talkative, decision-making skills etc.


An HR is the backbone of a  company. Right from recruiting the suitable person to training and then efficiency appraisal and then compensation and then exit interview...everything every step involves an HR.



So, if you wish to be a soul of the company not just a part of it, you should be an HR.

Report Error

View answer Workspace Report Error Discuss

Subject: Human Resources

7 10816
Q:

How to create a basic text file in php?

Answer

$filename = "/home/user/guest/newfile.txt";
$file = fopen( $filename, "w" );
if( $file == false )
{
echo ( "Error in opening new file" );
exit();


}
fwrite( $file, "This is a simple test\n" );
fclose( $file );

Report Error

View answer Workspace Report Error Discuss

Subject: PHP
Job Role: IT Trainer

5 10811
Q:

What is the journal entry process from the time of generating an invoice to receiving payment?

Answer

When an invoice is generated and sent to the client/customer, the JE to be passed is debit customer account and credit revenue/accounts receivable account. When payment is received from customer, then debit bank account and credit the customer account concerned

Report Error

View answer Workspace Report Error Discuss

14 10760