Question
Under Section 22 of the Credit Information Companies
(Regulation) Act, 2005, what is the penalty for a credit information company or credit institution wilfully providing false credit information knowing it to be false?Solution
Section 22(3) of the Credit Information Companies (Regulation) Act, 2005 provides that any credit information company, credit institution, or specified user that wilfully provides false credit information knowing it to be false, or wilfully omits to make a material statement, shall be punishable with fine which may extend to ₹1 crore. Additionally, Section 22(1) prohibits any unauthorised access to credit information held by a credit information company, credit institution, or specified user. The CICR Act is administered by the RBI, which also has the power to regulate, supervise and inspect credit information companies.
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...