Skip to main content

Indian Penal Code Part 1




The Indian Penal Code (IPC) is a comprehensive criminal code that applies to all citizens of India. It contains provisions related to a variety of crimes, including murder, theft, assault, fraud, and sedition. It is applicable within the territorial boundaries of India and also for offenses committed by Indians abroad. 

For example, according to the Indian Penal Code Section 82: “Nothing is an offence which is done by a child under the age of twelve years”. This means that any act committed by a 12 year old in India will not be viewed as a criminal offence under Indian law.


The Code of Criminal Procedure: (CrPC) is a substantive law that governs the criminal justice system in India. It contains provisions for the collection of evidence and enforcement of criminal laws. Specifically, it explains the procedure for prosecuting an offender, including arrest, examinations of witnesses, collection and analysis of evidence, and various other stages in between. The Code also includes provisions regarding how proceedings are to be conducted in a criminal court, such as setting up of a jury trial or laying out the rules for determination of bail and sentencing. The CrPC is an important part of the Indian Penal Code (IPC).


What is bail in indian penal code?
Bail is a way of securing the release of an accused person awaiting trial. In India, bail is granted under Section 437 and Section 439 of the Code of Criminal Procedure. According to these sections, a person accused or suspected of committing a non-bailable offence may be released on bail with or without furnishing security, depending on the gravity of the offence. The power to grant bail lies with the court. However, in certain cases, the police can also grant bail to an accused person.


Section 437 (CrPC) deals with the general provision on bail and states that any person accused of an offence punishable with imprisonment for a term which may be less than seven years or which may extend to seven years, but not including a case where the punishment for such an offence is death sentence or life imprisonment, shall be released on bail unless there appears reasonable grounds for believing that he has been guilty of an offence punishable with death or imprisonment for life. 


 Section 439 (CrPC) talks about power of High Court and Sessions Court to grant bail in certain cases. It states that the High Court or Sessions Court, as the case may be, may direct that any person accused of an offence and in custody be released on bail. Such direction can be made even if there is no provision in this Code for granting of such relief. It can also direct that a person accused of an offence punishable with imprisonment for life, should also be admitted to bail when it appears sufficient cause exists for doing so. 




 Nonbailable crimes in IPC 
The following are some of the non-bailable offences under the Indian Penal Code: 
 1. Criminal Conspiracy 
 2. Attempt to Murder 
 3. Abetment to Suicide 
 4. Kidnapping or Abduction 
 5. Rape or Gang Rape 
 6. Dacoity or Robbery 
 7. Extortion or Criminal Misappropriation of Property 
 8. Human Trafficking 
 9. Public Nuisance 
10. Offences against the State 
11. Offences relating to Documents and Currency Notes 
12. Counterfeiting Currency or Stamps

Comments

Popular posts from this blog

Globant part 1

 1)call,apply,bind example? Ans: a. call Method: The call method is used to call a function with a given this value and arguments provided individually. Javascript code: function greet(name) {   console.log(`Hello, ${name}! I am ${this.role}.`); } const person = {   role: 'developer' }; greet.call(person, 'Alice'); // Output: Hello, Alice! I am developer. In this example, call invokes the greet function with person as the this value and passes 'Alice' as an argument. b. apply Method: The apply method is similar to call, but it accepts arguments as an array. Javascript code: function introduce(language1, language2) {   console.log(`I can code in ${language1} and ${language2}. I am ${this.name}.`); } const coder = {   name: 'Bob' }; introduce.apply(coder, ['JavaScript', 'Python']); // Output: I can code in JavaScript and Python. I am Bob. Here, apply is used to invoke introduce with coder as this and an array ['JavaScript', 'Pyt...

Node.js: Extract text from image using Tesseract.

In this article, we will see how to extract text from images using Tesseract . So let's start with this use-case, Suppose you have 300 screenshot images in your mobile which has an email attribute that you need for some reason like growing your network or for email marketing. To get an email from all these images manually into CSV or excel will take a lot of time. So now we will check how to automate this thing. First, you need to install Tesseract OCR( An optical character recognition engine ) pre-built binary package for a particular OS. I have tested it for Windows 10. For Windows 10, you can install  it from here. For other OS you make check  this link. So once you install Tesseract from windows setup, you also need to set path variable probably, 'C:\Program Files\Tesseract-OCR' to access it from any location. Then you need to install textract library from npm. To read the path of these 300 images we can select all images and can rename it to som...

CSS INTERVIEW QUESTIONS SET 2

  You make also like this CSS interview question set 1. Let's begin with set 2, 5)What is the difference between opacity 0 vs display none vs visibility hidden? Property           | occupies space | consumes clicks | +--------------------+----------------+-----------------+ | opacity: 0         |        yes      |        yes       | +--------------------+----------------+-----------------+ | visibility: hidden |        yes       |        no        | +--------------------+----------------+-----------------+ | display: none      |        no       |        no        | When we say it consumes click, that means it also consumes other pointer-events like onmousedown,onmousemove, etc. In e...