Skip to main content

Mass Suicide? 11 of family found dead in Delhi home


Mass Suicide? 11 of family found dead in Delhi home


NEW DELHI:  
A joint family of 11 was found dead, 10 of them hanging in a hallway in their home in Sant Nagar, North Delhi , in what appears to be a bizarre mass suicide committed on Sunday morning on religious motivations.


The eldest family member, Narayani Bhatia (77) ,was found strangled in another room. The rest, including two 15-year-old boy, allegedly used chunnis (scarves) with religious motifs and cables to hang themselves. They were gagged and blindfolded, with hands tied. Cotton buds were found stuffed in their ears.


A diary found in the house had detailed instructions  for "mass salvation", including how hangings should be conducted. The Bhatias, who ran a shop in the area, seemed to have followed the instructions, some of which may have been written months ago. They conducted a "havan" hours before the suicides.


The only one alive in the house was the family dog,Jacky, who had been sent to the terrace. An FIR under section 302 (murder) has been registered. Police chief Amulya Patnaik told TOI that all angles were being probed by the crime branch.

Valuables intact, no sign of struggle at crime scene: Cops
Police sources stated that extreme religious practices appeared to be the trigger for act. Joint commissioner (Crime) Alok Kumar confirmed that the police had recovered certain hand written notes during the search of the house which indicated that the entire family was following “some definite spiritual/mystical practices”.

The Bhatias lived on the first floor of house number 137/5/2 in lane number 2 of Sant Nagar. Narayani had two sons, Bhavnesh (50) and Lalit (45), who lived in the house with their respective wives, Savita (48) and Teena (42). Bhavnesh had three children Nitu (25), Monu (23) and Dhruv (15), while Lalit had a 15-year-old son, Shivam. Narayani’s elder daughter, Pratibha (57) also lived in the house with her daughter, Priyanka (33), after her husband died a few years ago. All of them were found dead.

The deaths came to light at 7:15 am, when a neighbour, Gurcharan Singh, visited the house and alerted the police after witnessing the horror.

“The Bhatia brothers had recently started a dairy business from their general store and used to open their shop at 5:30 am. Today, however, my wife noticed that the shop hadn’t opened till 7 am and many customers had lined up outside. I went in to check and found the main door unlocked. The entire family was hanging in the hallway,” said Singh, a retired train locomotive driver, said. 
“Local police reached the spot, in front of Guru Gobind Singh Hospital, and found 11 people dead,” said additional DCP Vineet Kumar.


The wife of one of the Bhatia brothers, Teena, is originally from Dhar in MP. Her family has demanded a CBI probe into what it said was a “mass murder”. Teena’s brother said he had spoken to her a few days back and found she was fine. The district crime team and forensic lab of Rohini as well as the mobile forensic team reached the spot and lifted exhibits.

The house had not been ransacked and no valuable item, including mobiles, found disturbed or missing. Gold jewellery on the bodies of the women were intact and the crime scene didn’t indicate any signs of struggle, cops said. The bodies were shifted to the Sabzi Mandi mortuary in the afternoon and a medical team started performing autopsies on Sunday evening. The autopsy of three bodies were conducted on Sunday. The rest will take place on Monday.

The autopsy report is expected to confirm the exact cause of the deaths. It may also shed light on whether Narayani was strangled by a family member. Cops have seized a rope tied to an almirah in the room where she was found dead.


Comments

Post a Comment

Popular posts from this blog

Spring Security with JWT for REST API

Spring is considered a trusted framework in the Java ecosystem and is widely used. It’s no longer valid to refer to Spring as a framework, as it’s more of an umbrella term that covers various frameworks. One of these frameworks is Spring Security , which is a powerful and customizable authentication and authorization framework. It is considered the de facto standard for securing Spring-based applications. Despite its popularity, I must admit that when it comes to single-page applications , it’s not simple and straightforward to configure. I suspect the reason is that it started more as an MVC application -oriented framework, where webpage rendering happens on the server-side and communication is session-based. If the back end is based on Java and Spring, it makes sense to use Spring Security for authentication/authorization and configure it for stateless communication. While there are a lot of articles explaining how this is done, for me, it was still frustrating to set it up for the f...

Java Functional Interfaces

  The term   Java functional interface   was introduced in Java 8. A   functional interface   in Java is an interface that contains only a single abstract (unimplemented) method. A functional interface can contain default and static methods which do have an implementation, in addition to the single unimplemented method. Here is a Java functional interface example: public interface MyFunctionalInterface { public void execute(); } The above counts as a functional interface in Java because it only contains a single method, and that method has no implementation. Normally a Java interface does not contain implementations of the methods it declares, but it can contain implementations in default methods, or in static methods. Below is another example of a Java functional interface, with implementations of some of the methods: public interface MyFunctionalInterface2{ public void execute(); public default void print(String text) { System.out.println(t...

Java Logger

In Java, logging is an important feature that helps developers to trace out the errors. Java is the programming language that comes with the logging approach. It provides a Logging API that was introduced in Java 1.4 version. It provides the ability to capture the log file. In this section, we are going to deep dive into the Java Logger API. Also, we will cover logging level, components, Logging handlers or appenders, logging formatters or layouts, Java Logger class, What is logging in Java? In Java, Logging is an API that provides the ability to trace out the errors of the applications. When an application generates the logging call, the Logger records the event in the LogRecord. After that, it sends to the corresponding handlers or appenders. Before sending it to the console or file, the appenders format that log record by using the formatter or layouts. Need for Logging It provides the complete tracing information of the application. It records the critical failure if any occur in ...