Question
As per the Companies Act, 2013 when is a company
prohibited from directly or indirectly purchasing its own shares or other specified securities?Solution
Section 70.Prohibition for buy-back in certain circumstances- (1) No company shall directly or indirectly purchase its own shares or other specified securities— (a) through any subsidiary company including its own subsidiary companies; (b) through any investment company or group of investment companies; or (c) if a default, is made by the company, in the repayment of deposit accepted either before or after the commencement of this Act, interest payment thereon, redemption of debenture or preference shares or payment of dividend to any shareholder, or repayment of any term loan or interest payable thereon to any financial institution , or banking company: Provided that the buy-back is not prohibited, if the default is remedied and a period of three years has lapsed after such default ceased to subsist.
The concept of demand paging relies on:
Which register stores the temporary results during computation?
Python's built-in dict (dictionary) data structure is typically implemented using a hash table. What is the average-case time complexity for get, set, a...
Which component in Hadoop is responsible for managing cluster resources and scheduling tasks?
Consider the following Python code:
def mystery(a, b):
if a == 0:
return b
e...
Which of the following is a characteristic of "tight coupling" between software modules?
A Java method isLeaf(TreeNode node) is intended to check if a given node is a leaf in a binary tree.
class TreeNode {
int val;
<...The following Python code intends to enforce that all `Worker` subclasses implement a `work` method. However, it's not working as expected.
class...
What is the main advantage of using subword tokenization in NLP?
Consider a system with 4 CPU cores. If there are 8 user-level threads in a single process, what is the maximum number of these threads that can execute ...