Skip to main content

�� 10 Biggest and Deadliest Major Train Accidents in India - Worst India...





List of rail accidents (India train accident):-

1. 6 June 1981  Bihar train disaster (300-800 Deaths)

2. 20 August 1995 Firozabad rail disaster (358 Deaths)

3. 2 August 1999: Collision of Awadh–Assam Express and



Brahmaputra Mail (268 Deaths)

4. 26 November 1998: Khanna rail disaster (212 Deaths)

5. 28 May 2010 – Gyaneshwari Express train derailment (170 Deaths)

6. 23 December 1964 – Pamban-Dhanuskodi passenger train (150 Deaths)

7. 9 September 2002, Howrah-New Delhi Rajdhani Express (140 Deaths)

8. 28 September 1954 – Accident In Hyderabad (139 Deaths)

9. 2 September 1956 – Near Mahbubnager (125 Deaths)

10. 17 July 1937 – An express train from Calcutta plunged down an embankment near Bihta station, 119 Deaths

Comments

Popular posts from this blog

Clap On Off Switch Circuit Using Arduino

  Arduino Clap LED program #define MicAO 8 int ledPin = 13; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() {   pinMode(MicAO, INPUT);   pinMode(ledPin,OUTPUT);   } void loop() { int status_MicAO = digitalRead(MicAO); if (status_MicAO == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && millis()-detection_range >= 50) { detection_range = millis(); clap++; } } if (millis()-detection_range_start >= 400) { if (clap == 2) { if (!status_lights) { status_lights = true; digitalWrite(ledPin, HIGH); } else if (status_lights) { status_lights = false; digitalWrite(ledPin, LOW); } } clap = 0; } }

Bluetooth Robot Car Using Arduino Project Step By Step

Bluetooth Controlled Robot Car Using Arduino Bluetooth Controlled Robot Car Using Arduino Project using LM298n motor deriver and hc-05 bluetooth module step by step tutorial. Code Download :- Click Here Arduino bluetooth controller app Arduino bluetooth controller App

How To Make Radar With Arduino UNO Using Ultrasonic Sensor

  Creating a radar system with an Arduino UNO and an ultrasonic sensor involves a few straight forward steps. First, you'll need to connect the ultrasonic sensor's trigger pin to one of the Arduino’s digital output pins and the echo pin to a digital input pin. Then, write a simple Arduino sketch to send a pulse from the trigger pin and measure the duration of the pulse received on the echo pin. This duration, proportional to the distance of an object from the sensor, can be calculated using the speed of sound. By continuously taking readings and mapping them to distances, you can plot these measurements to visualize objects in your environment, effectively creating a basic radar system. To display the results, you could use a serial monitor or even integrate an LCD display for real-time feedback. Here is the code below ,- //radar.ino #include <Servo.h>  const int trigPin = 9; const int echoPin = 8; long duration; int distance; Servo myServo;  void setup() {   p...