Interview Questions

Q:

Describe an instance when you had to think on your feet to extricate yourself from a difficult situation.

Answer

Sample Response :


When I was a resident assistant at my college, a student I did not know asked me if he could use my phone to call another room. Although I did not know the student, I allowed him into my room. He used the phone and in the course of his conversation, he stated that he had just come from a fraternity party and was high from taking some drugs. Well after his conversation, I had to enforce the student conduct code by writing him up. He became very hostile towards me and would not give me any identification or information. I stood in the doorway to prevent him from leaving. I noted the serial numbers on his keys, so when the situation got to the point where I felt unsafe, I allowed the him to leave. I still preformed my job without jeopardizing my or his physical welfare. 


 

Report Error

View answer Workspace Report Error Discuss

4 5663
Q:

How to define Inter company Transaction in Account Receivable?

Answer

Before answering the above question let us first understand the meaning of Intercompany transactions. Intercompany transactions are those transactions that takes place between two or more entities of the same group of company. So the receivable of one entity would the payable of another entity. All intercompany transactions are eliminated befor preparing the final Balance sheet of the group company.

Report Error

View answer Workspace Report Error Discuss

6 5643
Q:

What is Oracle Spatial?

Answer

Oracle Spatial, often referred to as spatial, provides a SQL schema and functions that facilitate the storage, retrieval, update, and query of collections of spatial features in an Oracle database. Oracle Spatial is designed to make spatial data management easier and more natural to users of location-enabled applications and geographic information system (GIS) applications. Once spatial data is stored in an Oracle database, it can be easily manipulated, retrieved, and related to all other data stored in the database.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

1 5639
Q:

What are the most important values and ethics you demonstrate as a leader? Give me an example of these in practice.

Answer

Tips :


Integrity-being honest and believability and conviction- is one of concrete leadership abilities. The value and morals in personal behavior are the necessaries with an excellent leader and these values and morals need to be brought into organizational training and activities. A successful leader is the one who uses his/her conviction most efficiently. Leaders do not loose confidences or expose potentially dangerous information if they are close with their employees and they are the honest symbols.

Report Error

View answer Workspace Report Error Discuss

14 5637
Q:

What do vectors represent?

A) Static arrays B) Dynamic arrays
C) Stack D) Queue
 
Answer & Explanation Answer: B) Dynamic arrays

Explanation:

Vectors are sequence containers representing arrays that can change in size.

Report Error

View Answer Report Error Discuss

Filed Under: C++

0 5629
Q:

What steps would you take before approving an invoice for payment?

Answer

Following steps should be taken

>Validate the invoice once it is matched for checking any holds..

>If workflow is implemented , Initiate approval for the invoice. Once the invoice is approved/Approrval not required(status in case WF is not implemented) you can go for payments.

>Create accounting after approval of invoice..

Finally for payments you need to format, build
-------------------------------------------------------------------------------
Before making payment

the following steps should be taken
1. invoice amt, date, qty, quy,
2. invoice duplication or not
3. rectification of any Errors in invoice
------------------------------------------------------------------------------
Before hand over the invoice or dispatch the materials
1.we have to receive perchase order from the customer
2.Then PDC cheque, cash or current dated chq for dispatch the materials
3.have to take signature from the customer for the proof of goods recieve
-------------------------------------------------------------------------------
We must check the invoice thoroughly.
(1) Date of Invoice
(2)Qty,Rate,Tax Levid

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

4 5621
Q:

What is the importance of finally block in exception handling ?

Answer

A finally block will always be executed, whether or not an exception is actually thrown. Even in the case where the catch statement is missing and an exception is thrown, the finally block will still be executed. Last thing to mention is that the finally block is used to release resources like I/O buffers, database connections, etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

11 5608
Q:

Write a SQL Query to find year from date.

Answer

SELECT YEAR(GETDATE()) as "Year";

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

2 5607