Interview Questions

Q:

What are the general deductions made while doing payroll for an employee in an organization?

Answer

Professional Tax


ESI


PF


Recoveries


Advances if any

Report Error

View answer Workspace Report Error Discuss

0 2109
Q:

What is the objective of Financial Reporting?

Answer

Financial Reporting involves the disclosure of financial information to the various stakeholders about the financial performance and financial position of the organization over a specified period of time. These stakeholders include – investors, creditors, public, debt providers, governments & government agencies.


Financial Reporting is very important and critical task of an organization. It is vital part of Corporate Governance.


 


The objectives & purposes of financial reporting :–


 


* Providing information to management of an organization which is used for the purpose of planning, analysis, benchmarking and decision making.


 


* Providing information to investors, promoters, debt provider and creditors which is used to enable them to male rational and prudent decisions regarding investment, credit etc.


 


* Providing information to shareholders & public at large in case of listed companies about various aspects of an organization.


 


* Providing information about the economic resources of an organization, claims to those resources (liabilities & owner’s equity) and how these resources and claims have undergone change over a period of time.


 


* Providing information as to how an organization is procuring & using various resources.


 


* Providing information to various stakeholders regarding performance management of an organization as to how diligently & ethically they are discharging their fiduciary duties & responsibilities.


 


* Providing information to the statutory auditors which in turn facilitates audit.


 


* Enhancing social welfare by looking into the interest of employees, trade union & Government.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2104
Q:

How to create Directory on the HD?

Answer

To create directory on the HD we use mkDir() method:


boolean mkDir();


This method returns true if the directory is created on HD


This method returns false if the directory is already existing on HD

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2102
Q:

What is a better way to design the layout of a web page – a table tag or div?

Answer

- The better way to design the layout of the webpage is by using the <div> tag. 


- The <table> tag is used to present the data in tabular format

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 2102
Q:

Can we compile a java program without main?

Answer

Yes, we can. In order to compile a java program, we don't require any main method. But to execute a java program we must have a main in it (unless it is an applet or servlet). Because main is the starting point of a java program.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2102
Q:

What is ADB in Android ?

Answer

Adb is short for Android Debug Bridge. It allows developers the power to execute remote shell commands. Its basic function is to allow and control communication towards and from the emulator port.

Report Error

View answer Workspace Report Error Discuss

3 2101
Q:

What is separation in HRM?

Answer

Separation of an employee exists when the service of an employee comes to an end because of one reason or other. "Separation of employment" refers broadly to the process of managing the termination of employment. It is a sensitive issue for any organization. 


 


Types of separation:


 


1) Volunntary:


a) Resignation
b) Job abandonment
c) Retirement


 


2) Involuntary:


a) Layoff
b) Dismissal
c) Plant closure
d) Death or Disability.

Report Error

View answer Workspace Report Error Discuss

1 2100
Q:

What is a ResultSet ?

Answer

A table of data representing a database result set, which is usually generated by executing a statement that queries the database.


 


ResultSet object maintains a cursor pointing to its current row of data. Initially the cursor is positioned before the first row. The next method moves the cursor to the next row, and because it returns false when there are no more rows in the ResultSet object, it can be used in a while loop to iterate through the result set.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2100