Interview Questions

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 5784
Q:

What is Demat Account? what is the use of it?

Answer

Demat means Dematerialisation of share, in simple it is an account with which a person can trade in security market without which a person cannot buy or sell any share in security market. 

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

6 5776
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 5766
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 5759
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 5752
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 5749
Q:

What’s the difference between Enumeration and Iterator interfaces ?

Answer

Enumeration is twice as fast as compared to an Iterator and uses very less memory. However, the Iterator is much safer compared to Enumeration, because other threads are not able to modify the collection object that is currently traversed by the iterator. Also, Iteratorsallow the caller to remove elements from the underlying collection, something which is not possible with Enumerations.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 5700
Q:

What are the different implementations of LINQ?

Answer

The different implementations of LINQ are:


      =>  LINQ to SQL - Refers to a component of.NET Framework version 3.5 that    provides a run-time infrastructure to manage relational data as objects.

      =>   LINQ to DataSet - Refers to a component that makes it easier and faster to query over data cached in a DataSet object.

      =>   LINQ to XML - Provides an in-memory XML programming interface.

      =>  LINQ to Objects - Refers to the use of LINQ queries with any IEnumerable or IEnumerable(T) collection directly, without the use of an intermediate LINQ provider or API, such as LINQ to SQL or LINQ to XML.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

1 5690