Question
If a person has made an entry in a book of accounts
kept by him in the course of his business and he dies subsequently, can the entries in book of accounts be taken into consideration under s.32?Solution
S. 32. Cases in which statement of relevant fact by person who is dead or cannot be found, etc., is relevant. –– Statements, written or verbal, of relevant facts made by a person who is dead, or who cannot be found, or who has become incapable of giving evidence, or whose attendance cannot be procured without an amount of delay or expense which under the circumstances of the case appears to the Court unreasonable, are themselves relevant facts in the following cases: –– (2) or is made in course of business. –– When the statement was made by such person in the ordinary course of business, and in particular when it consists of any entry or memorandum made by him in books kept in the ordinary course of business, or in the discharge of professional duty; or of an acknowledgement written or signed by him of the receipt of money, goods, securities or property of any kind; or of a document used in commerce written or signed by him; or of the date of a letter or other document usually dated, written or signed by him.
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 ...