Interview Questions

Q:

What is top level class?

Answer

Top level class is also called outer class. It is not defined inside any class.


Ex:


class A {  //top level class


 


}

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2042
Q:

What is the difference between a BPO and a call center?

Answer

Call center is a subset of BPO. 

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

0 2042
Q:

Assume that your app is running in the foreground but is currently not receiving events. In which sate it would be in?

Answer

An app will be in InActive state if it is running in the foreground but is currently not receiving events. An app stays in InActive state only briefly as it transitions to a different state.

Report Error

View answer Workspace Report Error Discuss

0 2039
Q:

What is database clusters?

Answer

Group of tables physically stored together because they share common columns and are often used together is called Cluster.

Report Error

View answer Workspace Report Error Discuss

4 2039
Q:

When does the SQL statement gets executed when you use cursor in the application programming?

Answer

SQL statement gets executed when we open cursor


 

Report Error

View answer Workspace Report Error Discuss

0 2038
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 2031
Q:

What is session storage and how can you create one?

Answer

Session storage is same like local storage but the data is valid for a session. In simple words the data is deleted as soon as you close the browser.


To create a session storage you need to use “sessionStorage.variablename” . In the below code we have a created a variable called as “clickcount”.


If you refresh the browser the count increases. But if you close the browser and start again the “clickcount” variable starts from zero.


if(sessionStorage.clickcount)


{


sessionStorage.clickcount=Number(sessionStorage.clickcount)+1;


}


else


{


sessionStorage.clickcount = 0;


Report Error

View answer Workspace Report Error Discuss

1 2030
Q:

What are wrapped classes ?

Answer

Wrapped classes are classes that allow primitive types to be accessed as objects.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2030