Question
Who has a right to make an application to Tribunal for
relief in cases of oppression, etc.?Solution
Section 244. Right to apply under section 241- (1) The following members of a company shall have the right to apply under section 241, namely:— (a) in the case of a company having a share capital, not less than one hundred members of the company or not less than one-tenth of the total number of its members, whichever is less, or any member or members holding not less than one tenth of the issued share capital of the company, subject to the condition that the applicant or applicants has or have paid all calls and other sums due on his or their shares; (b) in the case of a company not having a share capital, not less than one-fifth of the total number of its members.
Which type of join returns all rows from the left table and matching rows from the right table?
What is a primary key in a relational database?
Which of the following is a property of a relational database?
If every non-key attribute is functionally dependent on the primary key, the relation will be in
A relation is in 2NF if:
Which of the following is a common technique for concurrency control in databases?
In a program that manages a collection of `Employee` objects, each with a `salary` attribute, which control flow mechanism would be most efficient to fi...
In a relational database, what is a foreign key?
What does re.sub(r'(\w+)', r'_\1_', 'hello world') return?
Consider the following Java code snippetÂ
public class Car {
  private String model;
  private int year;
  publ...