Interview Questions

Q:

What is the difference between back end collections and front end collections?

Answer

Back end collections means like commission on sales or commission on providing services.
Front end collections means like sales and providing services

Report Error

View answer Workspace Report Error Discuss

16 16524
Q:

What is the default return type of a function ?

A) int B) void
C) float D) char
 
Answer & Explanation Answer: B) void

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: C++ - Technology

19 16402
Q:

What is capital structure? What are the principles of capital structure management?

Answer

Capital structure is a term which is referred to be the mix of sources from which the long term funds are required for business purposes which are raised to improve the capital of the company. To fund an organization plan this capital structure is required which is the combination of debt and equity. The management ensures the capital structure accesses which are needed to fund future growth and enhance financial performance. The principles of capital structure management which are essentially required are as follows:-


 


1) Cost Principle


2) Risk Principle


3) Control Principle


4) Flexibility Principle


5) Timing Principle

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

24 16363
Q:

A piece of icon or image on a web page associated with another webpage is called

A) url B) plugin
C) hyperlink D) none of the mentioned
 
Answer & Explanation Answer: C) hyperlink

Explanation:

In computing, a hyperlink, or simply a web link, is an icon or reference to data that links to another file or object that the reader can follow by clicking. The text which contains hyperlinks is called as hypertext.

 

A_piece_of_icon_or_image_on_a_web_page_associated_with_another_webpage_is_called1563599363.jpg image

Report Error

View Answer Report Error Discuss

13 16007
Q:

Tally package is developed by

A) Tally Solutions B) Coral Softwares
C) Vedika Softwares D) Peutronics
 
Answer & Explanation Answer: A) Tally Solutions

Explanation:

Tally package is developed by Tally Solutions. 

 

Tally Solutions, then known as Peutronics, was co-founded in 1986 by Shyam Sunder Goenka and his son Bharat Goenka.

 

Report Error

View Answer Report Error Discuss

Filed Under: Bank Interview - Accounting and Finance
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

13 15723
Q:

Write an SQL Query find number of employees according to gender whose DOB is between 01/01/1960 to 31/12/1975.

Answer

SELECT COUNT(*), sex from Employees  WHERE  DOB BETWEEN ‘01/01/1960 ' AND ‘31/12/1975’  GROUP BY sex;

Report Error

View answer Workspace Report Error Discuss

Subject: SQL - Technology

15 15550
Q:

What is the output of this program ?

class main_arguments {
            public static void main(String [ ] args)
            {
                String [][] argument = new String[2][2];
                int x;
                argument[0] = args;
                x = argument[0].length;
                for (int y = 0; y < x; y++)
                    System.out.print(" " + argument[0][y]);           
            }
        }

A) 1 1 B) 1 0
C) 1 0 3 D) 1 2 3
 
Answer & Explanation Answer: D) 1 2 3

Explanation:

In argument[0] = args;, the reference variable arg[0], which was referring to an array with two elements, is reassigned to an array (args) with three elements.
Output:
$ javac main_arguments.java
$ java main_arguments
1 2 3

Report Error

View Answer Report Error Discuss

Filed Under: Java - Technology
Exam Prep: GATE

0 15425
Q:

What is the difference between debenture and preference share ?

Answer

The difference between Debentures and Preferential Shares is as follows:

1) Person holding debentures has owed money to a company, while Preferential Shareholder could be considered as a partial owner of the company.

2) A Preference shareholder earns dividends if the company is making profits, however a debenture holder needs to be paid irrespective of making profits or losses.

3) A debenture holder would be paid the capital invested at the end of a stipulated term. A preference shareholder is not promised return of capital invested; instead he earns dividends till the time the company exists and is profitable.

4) A debenture holder earns interest on the capital invested till the capital is not returned, while a preference shareholder is paid dividends till the time the company exists.

Report Error

View answer Workspace Report Error Discuss

13 15405