Please select a subject first
Advertisements
Advertisements
What are the different types of short term financial assistance provided by the commercial banks to business houses?
Concept: undefined >> undefined
Answer the question.
What are the different types of short term financial assistance provided by the commercial banks to business houses?
Concept: undefined >> undefined
Advertisements
Write short note on Bank overdraft.
Concept: undefined >> undefined
Briefly explain any two merits of Public Deposits.
Concept: undefined >> undefined
Briefly explain any three demerits of public deposits.
Concept: undefined >> undefined
Explain any two advantages of Public deposits.
Concept: undefined >> undefined
Explain any two disadvantages of Public deposits.
Concept: undefined >> undefined
A company is facing liquidity crunch, hence offers relatively higher interest for upfront borrowing in comparison to commercial banks. Which source of short-term finance would be suitable in the above case?
Concept: undefined >> undefined
What is meant by trade credit? Mention two advantages of trade credit as a short-term source of finance.
Concept: undefined >> undefined
JSW Co. purchased goods on credit from SDW Co. and paid the amount after two months. Name the short term source of finance used by the buyer and state any three features of this source.
Concept: undefined >> undefined
What is meant by factoring?
Concept: undefined >> undefined
Briefly explain any two sources of short term finance.
Concept: undefined >> undefined
Give two merits of Inter Corporate Deposits.
Concept: undefined >> undefined
Explain the three disadvantages of preference shares from the investors’ point of view.
Concept: undefined >> undefined
The keyword used by a class to acquire the properties of an interface is:
Concept: undefined >> undefined
State the principle by which the stack data structure works.
Concept: undefined >> undefined
A Queue is a linear data structure in which the operations are performed based on FIFO (First In First Out).
Define a class Queue with the following details:
| Class name | Queue |
| Data member/instance variable: | |
| dat[ ] | array to hold the integer elements |
| cap | stores the maximum capacity of the queue |
| front | to point the index of the front |
| rear | to point the index of the rear |
| Member functions/methods: | |
| Queue(int max) | constructor to initialize the data member cap = max, front = rear = 0 and create the integer array |
| void add_dat(int v) | to add integers from the rear index if possible else display the message(“Queue full”) |
| int pop_dat( ) | to remove and return elements from front, if any, else returns -999 |
| void display() | to display elements of the queue |
Specify the class Queue giving the details of void add_dat(int) and int pop_dat( ). Assume that the other functions have been defined.
The main( ) function and algorithm need NOT be written.
Concept: undefined >> undefined
int Toy(int n)
{ return (n<=0)? 1: n%10 + Toy(n/10); }
With reference to the program code given above, what will the function Toy() return when the value of n = 56?
Concept: undefined >> undefined
Give one reason, why iteration is better than recursion.
Concept: undefined >> undefined
Differentiate between direct recursion and indirect recursion.
Concept: undefined >> undefined
