Question
Regarding the testimony of an accomplice under Section
138 of the Bharatiya Sakshya Adhiniyam, 2023, which of the following statements represents the MOST significant change from the corresponding Section 133 of the Indian Evidence Act, 1872?Solution
The MOST significant change in Section 138 of the Bharatiya Sakshya Adhiniyam, 2023 is the modification of the word from "uncorroborated " in Section 133 of the Indian Evidence Act, 1872 to "corroborated " in the new provision. The old Section 133 stated: "a conviction is not illegal merely because it proceeds upon the uncorroborated testimony of an accomplice." The new Section 138 states: "a conviction is not illegal if it proceeds upon the corroborated testimony of an accomplice." This change, combined with the retention of Illustration (b) to Section 119 (which states that accomplices are unworthy of credit unless corroborated), has transformed the corroboration requirement from a "rule of prudence " to a "rule of law ." This means that mandatory corroboration is now a legal requirement, not merely a cautionary guideline. The change was made after the Parliamentary Standing Committee noted a contradiction between the provisions and recommended modifications to ensure clarity.
What is the purpose of the fork() system call in Unix-based operating systems?
What does a star schema consist of?
Which is correct way to write methods in java?
An insert(root, value) function for a Binary Search Tree (BST) is implemented recursively. After inserting several elements, a search(root, value) funct...
Consider the following C++ code:
#include
class Base {
public:
Base() {
std::cout << "Ba...
Which of the following is the primary characteristic of serverless computing in cloud platforms?
What is the primary purpose of Encapsulation in Object-Oriented Programming?
In a perfectly balanced Binary Search Tree with N nodes, what is the worst-case time complexity for searching for an element?
Which Hadoop component is responsible for resource management?
Consider the following Java code snippet:
import java.util.PriorityQueue;
public class HeapQuestion9 {
publ...