Interview Questions

Q:

What is the difference between processes and threads ?

Answer

- A process is an execution of a program, while a Thread is a single execution sequence within a process.


- A process can contain multiple threads. A Thread is sometimes called a lightweight process.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2787
Q:

What is Retained Earnings?

Answer

When a company or corporation earns a profit or surplus, that money can be put to two uses it can either be re-invested in the business called retained earnings or it can be paid to the shareholders as a dividends.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

0 2778
Q:

Session_End: occurs when the users stop requesting pages and their session times out.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True.It occurs when the user stops requsting pages and session time is out

Report Error

View Answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

0 2778
Q:

Describe the Basic Steps used to create a tiles application in DHTML.

Answer

- Create a template that designs a layout for your application.


- Create the composing pages.


- Create a definition which means that suppose that you configured Tiles, in web.xml, to startup using the TilesServlet, we need to specify which files will contain the Tiles definitions to load.


- Render the definition.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

2 2777
Q:

What is the difference between JOURNAL ENTRY & LEDGER?

Answer

A journal is also called as a book of prime entry.Transactions occurred are first entered in this book to show which accounts should be debited and which should be credited.


on the basis of entries made in the journal, accounts are prepared, the book which contains the accounts is called a ledger. Transactions entered in the journal are classified according to their nature and posted in their respective accounts in ledger. it is also called as book of final entry.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

2 2775
Q:

How is a journal entry recorded?

Answer

A journal entry is recorded accourding to the rules of debit and credit.for example goods sold for Rs 50000 for cash ----to record this -- identify the accounts involved-- i.e.goods A/cand Cash A/cgoods is a real account and cash is also a real accountdebit and credit rule for Real accounts is DEBIT WHAT COMES IN CREDIT WHAT GOES OUT according to this--cash is coming to the organisation and goods is leaving from the organisation--Entry for this is Cash A/c Dr. 50000 to Goods A/c or Sales A/c 50000 ( For Cash Sales )

Report Error

View answer Workspace Report Error Discuss

1 2774
Q:

Explain Check constraint.

Answer

Oracle check constraint is used to ensure that before inserting the data in the database, it is validated and checked for the condition.
Example:
Below, the constraint is that the id has to be between 0 and 1000.
create table employee ( id number check (id between 0 and 1000), Name varchar(200) );

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 2767
Q:

What’s the difference between htmlentities( ) and htmlspecialchars( )?

Answer htmlspecialchars only takes care of , single quote ‘, double quote " and ampersand. htmlentities translates all occurrences of character sequences that have different meaning in HTML.
Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 2766