- published: 04 Jun 2024
- views: 237998
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
East Delhi (aka Trans Yamuna) is an administrative district of the National Capital Territory of Delhi in India. It is bounded by the Yamuna River on the west, North East Delhi to the north, Ghaziabad District of Uttar Pradesh state to the east, and Gautam Buddha Nagar District of Uttar Pradesh to the south.
East Delhi has a population of 1,448,770 (2001 census) and an area of 64 km², with a population density of 22,638 persons per km².
Administratively, the district is divided into three subdivisions: Gandhi Nagar, Preet Vihar, and Vivek Vihar.
According to the 2011 census East Delhi has a population of 1,707,725, roughly equal to the nation of The Gambia or the US state of Nebraska. This gives it a ranking of 284th in India (out of a total of 640). The district has a population density of 26,683 inhabitants per square kilometre (69,110/sq mi) . Its population growth rate over the decade 2001-2011 was 16.68%. East Delhi has a sex ratio of 883 females for every 1000 males, and a literacy rate of 88.75%.
East Delhi Lok Sabha constituency is one of the 7 Lok Sabha (parliamentary) constituencies in the Indian National Capital Territory of Delhi. This constituency came into existence in 1966. It presently comprises 40 municipal wards of the Municipal Corporation of Delhi with approximately 16 lakh voters and a population of approx 25 lakhs.
East Delhi is one of the larger and highly populated Lok Sabha constituencies not only in Delhi but all over India. The constituency covers areas east of the Yamuna and has a large population, including Seelampur, Shahdara, Gandhi Nagar and Preet Vihar. The current MP from here is Mahesh Giri
From 1966-93, East Delhi Lok Sabha constituency comprised the following Delhi Metropolitan Council segments:
From 1993-2008, it comprised the following Delhi Vidhan Sabha segments:
Delhi (/ˈdɛli/, Hindustani pronunciation: [d̪ɪlliː] Dilli), officially the National Capital Territory of Delhi, is the capital territory of India. Delhi is historically and culturally connected to both the Upper Doab of the Yamuna-Ganges river system and the Punjab region. It is bordered by Haryana on three sides and by Uttar Pradesh to the east. It is the largest city in India in terms of geographical area - about 1,484 square kilometres (573 sq mi). It has a population of about 16.3 million, making it the second most populous city and second most populous urban agglomeration in India and 3rd largest urban area in the world. Such is the nature of urban expansion in Delhi that its growth has expanded beyond the NCT to incorporate towns in neighbouring states and at its largest extent can count a population of about 25 million residents as of 2014.
Delhi has been continuously inhabited since the 6th century BC. Through most of its history, Delhi has served as a capital of various kingdoms and empires. It has been captured, ransacked and rebuilt several times, particularly during the medieval period, and modern Delhi is a cluster of a number of cities spread across the metropolitan region.
Delhi (pronounced DEL-High) is a former township (now an unincorporated community) located off of the junction of Ontario Highways 59 and 3. Delhi is known as the "Heart of Tobacco Country." Prior to 1880, this community was known for its lumber industry.
Founded by Frederick Sovereign as Sovereign's Corners around 1826, the community was renamed Fredericksburg and eventually to its present-day name of Delhi. The name is usually attributed locally to a postmaster honouring a major city of the British Empire, Delhi, India.
Delhi Cemetery was first established sometime in the 19th century. While it was originally a cemetery exclusively for residents who were religiously involved in the Roman Catholic Church, changes in cemetery policy made it possible to have anyone buried or interned on their property. At least 111 people and/or families hold their final resting place here. The last names of the graves belong to different ethnic groups ranging from Anglo-Saxon, French Canadian, Eastern European, and those of Belgian descent. There are even few Chinese families buried within the cemetery and a wide amount of tombstones are written in languages other than English.
Delhi's ethnic groups are diverse. During the British Raj, Delhi was a district city of the Punjab Province of British India and is still historically and culturally connected to the Punjab region. The Yamuna river was the historical boundary between the Punjab and the rest of the Indo-Gangetic Plain, and its flood plains provide fertile alluvial soil suitable for agriculture but are prone to recurrent floods. The Yamuna, a sacred river in Hinduism, is the only major river flowing through Delhi. The original natives of Delhi are those whose ancestors lived in the Yamuna basin, a region which spreads radially from the capital up to a distance of approximately 200 kilometres. Today the migrant population consists largely of Bhojpuris and Biharis.
The Indian censuses record the native languages, but not the descent of the citizens. Linguistic data cannot accurately predict ethnicity: for example, many descendants of the Punjabi Hindu and Sikh refugees who came to Delhi following the partition of India now speak Hindi natively. Thus, there is no concrete official data on the ethnic makeup of Delhi.
Delhi Election Results 2024: The BJP, which won all seven Delhi Lok Sabha seats both in 2014 and 2019, is leading in five seats in the national capital. The Opposition INDIA bloc is leading in two. Kanhaiya Kumar, who lost the last Lok Sabha election from Begusarai in Bihar, is up against BJP's two-term MP Manoj Tiwari from North East Delhi. #Elections2024Results #LokSabhaResults #Elections2024 #2024ElectionResults #Election2024 #LokSabhaElection2024Results #BJPvsCongress #ElectionResults2024 #GeneralElection2024 #NDA #INDIA #ElectionResults #NDAvsINDIAlliance #LokSabha #LokSabhaElection2024Results #BJPvsCongress #ResultsWithNDTV #ResultKyaRaha About NDTV (English news channel): NDTV is India's Most-Trusted News Broadcaster with the latest updates in news, sports, entertainment an...
Congress candidate from North East Delhi Lok Sabha constituency, Kanhaiya Kumar Monday filed his nomination. AAP Delhi Convenor Gopal Rai was also with him. All 7 Parliamentary constituencies of Delhi will go to polls on 25 May. --------------------------------------------------------------------------------------------- Exclusive content, special privileges & more – Subscribe to ThePrint for Special benefits: https://theprint.in/subscribe/ --------------------------------------------------------------------------------------------- Connect with ThePrint » Subscribe to ThePrint: https://theprint.in/subscribe/ » Subscribe to our YouTube Channel: https://bit.ly/3nCMpht » Like us on Facebook: https://www.facebook.com/theprintindia » Tweet us on Twitter: https://twitter.com/theprintindia » F...
Congress' North East Delhi Candidate Kanhaiya Kumar Exclusive |Lok Sabha Elections 2024 |India Today In This Episode Of Jab We Met, Watch Congress' North East Delhi Candidate Kanhaiya Kumar speak exclusively to India Today's News Director Rahul Kanwal. #kanhaiyakumar #kanhaiyakumarnews #delhiloksabha #congressvsbjp #rahulkanwal #indiatoday Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates a...
BJP's North East Delhi Lok Sabha candidate and sitting MP Manoj Tiwari on Tuesday took a swipe at the INDIA bloc nominee Kanhaiya Kumar, labelling him as "a supporter of terrorists like Afzal Guru". Manoj Tiwari also said that the upcoming electoral battle between him and Kanhaiya Kumar would be very interesting. Speaking exclusively to India Today TV, Tiwari asserted that both Congress and Aam Aadmi Party (AAP) have exposed themselves by fielding the former Jawaharlal Nehru University Students Union (JNUSU) president in Lok Sabha polls. #indiatoday #northeastdelhi #manojtiwari #kanhaiyakumar #loksabhaelection #loksabhaelectionnews #loksabhelection2024 Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you...
The Congress has fielded former JNU Students’ Union President Kanhaiya Kumar as its candidate from North East Delhi for the upcoming Lok Sabha elections. Kanhaiya Kumar will take on Bhojpuri actor-singer and incumbent BJP MP Manoj Tiwari from North East Delhi when the capital city goes to poll on May 25. In 2019, Kanhaiya Kumar contested a Communist Party of India (CPI) ticket from Bihar's Begusarai, wherein he had lost to Union minister and Bharatiya Janata Party leader Giriraj Singh. Later, he joined the Congress in 2021. Meanwhile, Manoj Tiwari is BJP's two-time MP from North East Delhi seat after he defeated former Chief Minister Sheila Dikshit in the 2014 Lok Sabha elections. #loksabhaelection2024 #loksabhaelections2024 #delhi #kanhaiyakumar #manojtiwari #congress #bjp #news18 n18o...
Election to 542 Lok Sabha seats is being conducted in seven phases between April 11 and May 19. Election in Vellore constituency in Tamil Nadu has been cancelled following excess use of money power. Results will be declared on May 23. To Subscribe our YouTube channel here: https://www.youtube.com/user/abpnewstv Download ABP App for Apple: https://itunes.apple.com/in/app/abp-live-abp-news-abp-ananda/id811114904?mt=8 Download ABP App for Android: https://play.google.com/store/apps/details?id=com.winit.starnews.hin&hl=en About Channel: ABP News is a news hub which provides you with the comprehensive up-to-date news coverage from all over India and World. Get the latest top stories, current affairs, sports, business, entertainment, politics, astrology, spirituality, and many more here onl...
Election Results 2024: BJP is leading in Delhi as of 11 AM on the counting day of Lok Sabha results. The contest in Delhi is a direct one between PM Narendra Modi's BJP and the INDIA alliance led by Aam Aadmi Party's Arvind Kejriwal. Delhi send 7 MPs to the Lok Sabha. The campaign in Delhi was a bitter one and has been closely contested by both sides. Delhi Chief Minister Arvind Kejriwal, who was out on bail, led the campaign for the INDIA bloc, while BJP's campaign was led by Prime Minister Narendra Modi himself. In the 2019 Lok Sabha polls, the BJP had won all 7 Lok Sabha seats from the national capital. #Elections2024Results #LokSabhaResults #Elections2024 #2024ElectionResults #Election2024 #LokSabhaElection2024Results #BJPvsCongress #ElectionResults2024 #GeneralElection2024 #NDA #IND...
Lok Sabha Elections 2024: The North East Delhi Lok Sabha constituency stands as a pivotal battleground in the upcoming Lok Sabha elections. Congress' Kanhaiya Kumar takes on BJP's Manoj Tiwari in North East Delhi contest. The North-East Delhi constituency, often characterized by its significant Poorvanchali population from Uttar Pradesh and Bihar, has oscillated between the BJP and Congress. The Indian National Congress won in 2009, only to concede to the Bhartiya Janata Party (BJP) in 2014 and 2019. BJP's Manoj Tiwari emerged victorious in both these elections. With Manoj Tiwari seeking a third consecutive victory and AAP, which is part of the INDIA block, aiming at disrupting the BJP's hold, the forthcoming elections in North East Delhi are poised to be a riveting affair. Delhi goes to...
#loksabhaelection2024 #indiavsnda #kanhaiyakumar #manojtiwari #news24 North East Delhi Lok Sabha constituency में इस महिला ने बताई नेताओं की हकीकत | NDA | INDIA News24 motto of 'Think First' is reflected in its YouTube channel as well, as it brings to you the most authentic and credible news in politics, entertainment, Bollywood, cricket, sports and business 24x7 in Hindi. Besides news, it also brings you exclusive interviews, LIVE streaming, popular shows, debates, and special programs. Download News24 APP : https://onelink.to/dqfs43 Follow Us On Whatsapp : https://whatsapp.com/channel/0029VaKkUhiGOj9x9SV52z2S Follow us on Twitter: http://bit.ly/news24twitter Like us on Facebook: http://bit.ly/news24facebook Follow us on Instagram: https://instagram/news24official E24 Bollywood ...
Kanhaiya Kumar, the former president of Jawaharlal Nehru University Students' Union, will be the Lok Sabha candidate for North East Delhi representing the Congress party. He will compete against incumbent BJP MP Manoj Tiwari, who has held the seat for two consecutive terms. This is Kanhaiya Kumar's second attempt at the Lok Sabha after his 2019 bid in Bihar's Begusarai under the CPI banner, which he lost to Union Minister and BJP's Giriraj Singh. Kanhaiya joined the Congress party in 2021. ► Subscribe to The Economic Times for the latest video updates. It's free! - https://www.youtube.com/TheEconomicTimes?sub_confirmation=1 ► More Videos @ ETTV - https://economictimes.indiatimes.com/TV ► https://EconomicTimes.com ► For business news on the go, download ET app: https://etapp.onelink.me/...
We made it to India!! Come with us as we explore Old and New Delhi during as we develop our first impressions of India. In this video we really wanted to show the multiple faces of Delhi; a city most commonly known to the Western World as a place of noise, dirt, and poverty. And while that can all be found here, New Delhi and Cyber City showed us that the opposite things can be found here too: quiet, cleanliness, and wealth. There is so much to discover in Delhi! If you are visiting Delhi soon or this is your first time in Delhi as well, then this video will also help you plan your time in this giant city! To really develop our first impressions of India, we wanted to explore as much of Delhi as we could (without overloading this vlog too much!). Over the course of a couple days (thanks r...
FOLLOW OUR PODCAST Apple: http://apple.co/ballenbedtimestories Amazon: https://lnk.to/BedtimeStoriesPod Spotify: https://spotify.link/hJciJkAYiDb Urban legends exist around the world. Mostly, they keep us from parking in dark places at night, or from talking to creepy kids with dark-coloured eyes. But what happens when an urban legend goes viral, causing so much panic that people begin to die because of it? That’s precisely what happened in India in 2001, when residents reported some 350 terrifying encounters with what would eventually become known as the Monkey Man of Delhi. Check out these other channels and videos! @UnexplainedMysteriesOfficial The Mysterious Monkey Man Of New Delhi https://www.youtube.com/watch?v=xP_3jdoqh7s @decodingtheunknown2373 What Was The ‘Monkey Man’ Of Del...
Three armed men opened indiscriminate fire at a club in Delhi late Thursday in a bid to threaten the owner and extort money. The incident took place at the Kaanch Club in North East Delhi's Seemapuri and was caught in the CCTV installed outside the club. There are no reports of any injuries. #DelhiClubFiring #ArmedMenOpenFire #DelhiClubShootout #GunmenTarget #DelhiClub #ArmedMenAttackedClub #NDTVDigitalOriginals About NDTV (English news channel): NDTV is India's Most-Trusted News Broadcaster with the latest updates in news, sports, entertainment and much more from within India and around the world. Watch big political debates, exclusive entertainment interviews, news bulletins, current affairs, talk shows and tech reviews with our 24x7 news live streams, packed with credible informat...
Head to https://squarespace.com/rhettandclaire to save 10% off your first purchase of a website or domain using code "rhettandclaire" 😁 Travelling to INDIA soon? Consider picking up our Resource Pack + Itinerary - https://bit.ly/3GP16KE We’re out exploring the second most populated city IN THE WORLD - Delhi, India😱🇮🇳 Even though we were told numerous times not to visit the city, we still did and were very surprised. ▬▬▬▬▬ D E A L S F O R Y O U 🎥Stock footage we use — https://bit.ly/3IViEm4 ♫Music we use — https://bit.ly/3yeYI9f, https://bit.ly/3J73gUP ✈Travel Insurance — https://bit.ly/3oKuuuR ✈Comprehensive health insurance - https://bit.ly/2BoAPnG ✈Get the best VPN — https://nordvpn.com/rhettandclaire ▬▬▬▬▬ S U P P O R T U S Want to help us stay on the road? We'll be incred...
#Chanakyaa #delhirajagopalan #bjp #modi #latestnews #tamilnews #rangarajpandey #RangarajpandeyLatest #latestupdate #PandeyLatest #ChanakyaaDigitalNews #ChanakyaaChannel சாணக்யா! அரசியல், சமூக பிரச்சனை , அறிவியல் , கலாச்சாரம் , விளையாட்டு , சினிமா மற்றும் பொழுதுபோக்கு அம்சங்களை வழங்கும் ஊடகம். A Tamil media channel focusing on , Politics, Social issues, Science , Culture, Sports, Cinema and Entertainment. Connect with Chanakyaa: SUBSCRIBE US to get the latest news updates: https://www.youtube.com/Chanakyaa Visit Chanakyaa Website -https://chanakyaa.in/ Like Chanakyaa on Facebook - https://www.facebook.com/chanakyaaonline/ Follow Chanakyaa on Twitter - https://twitter.com/ChanakyaaTv Follow Chanakyaa on Instagram - https://www.instagram.com/chanakyaa_tv/?hl=en Android App - http...
I'm 𝐄𝐱𝐩𝐥𝐨𝐫𝐞 𝐢𝐧𝐝𝐢𝐚, I'm a 𝐕𝐢𝐝𝐞𝐨 𝐂𝐫𝐞𝐚𝐭𝐨𝐫 Who Make These Kind Of Content Regarding - "𝐓𝐨𝐮𝐫𝐢𝐬𝐦,𝐈𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐯𝐞 𝐕𝐢𝐝𝐞𝐨𝐬,𝐂𝐫𝐢𝐬𝐢𝐬 & 𝐒𝐨 𝐎𝐧"... Check Out My More Videos I Hope You Really Enjoyed Them. ★ 𝗠𝗨𝗦𝗜𝗖 𝗖𝗥𝗘𝗗𝗜𝗧 Delhi - 6 (T-SERIES) https://youtu.be/sPkthMfeWMY Song - Dilli-6 Film - Delhi-6 Singer - Blaaze, Benny, Tanvi, Viviane, Claire Lyricist - Viviane, Claire Music Director - A.R. Rahman Artist - Abhishek Bachchan, Sonam Kapoor, Atul Kulkarni, Divya Dutta, Om Puri, Rishi Kapoor, Waheeda Rehman Music On - T-Series (No Copyright) "Delhi" - Modern Indian Trap Hip Hop Background Music For Videos by SoulProdMusic https://youtu.be/2L0PodP2Emc?list=LL ___________________________________________________ ★ This Video Is Edit In 𝗣𝗿𝗲𝗺𝗶𝘂𝗿𝗲 𝗣𝗿𝗼 𝗰𝗰 ★ It Take Lots Of Efforts To Make These Kind Of Videos F...
#delhi #delhinews #india in this video we will know about the most important city of the India delhi. enjoy the video and don't forget to subscribe the channel. places to visit in delhi India Gate Red Fort Qutab Minar Hauz Khas Bahai (Lotus)Temple e Chandni Chowk Jama Masjid Rashtrapati Bhawan Paranthe Wali Gali Sarojini Nagar Market Jantar Mantar Gurudwara Bangla Sahib Connaught Place Kingdom of Dreams Raj Ghat and many more. _______________________________________________ For business enquiry Email : [email protected] ______________________________________________ Disclaimer-Some contents are used for educational purpose under fair use. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as critic is...
TOP 10 Attractions and Places to Visit in Delhi, India | Travel Video | Travel guide | SKY Travel #delhi #india #indian #travelvideo #travelguide #travel #travelvlog #traveling #skytravel @Sky.Travel
DELHI, INDIA TRAVEL GUIDE: In this New Delhi travel tour we explore around the old city and New Delhi. We also head over to Agra to visit Taj Mahal. Delhi is the capital of India and one of the largest cities in the world located in Northern India. We will show you the best things to do in Delhi in this tourist Vlog of Delhi India.We show you many of the best tourist attractions in Delhi. Watch Our Travel Guide From Mumbai India: https://youtu.be/RxwFb5dnWzg Best Things To Do in New Delhi India: 00:00 Delhi Intro 0:23 Lotus Temple 1:37 Pracheen Hanuman 2:47 Qutab Minar 3:31 Quwwatul-Islam Masjid 5:22 Agra Taj Mahal 7:50 Delhi Historical Facts 9:05 Yamuna River 11:56 The Chandni Chowk 16:02 Delhi Market Tour 18:27 Gurudwara Bangla Sahib 22:07 Indian Food 23:09 India Gate 24:22 Cobra Danc...
Ever wondered what India is like? India is one of the most culturally diverse countries in the world so it's easy for tourists to embarrass themselves while they're there. Here are 10 things NOT to do while in India. Support me on Patreon if ya dig what I'm doing: https://www.patreon.com/calmckinley You can also check out my website for a FULL list of travel recommendations! https://golocaltips.com Instagram: https://www.instagram.com/calmckinley/ facebook: https://www.facebook.com/golocaltips/ Music: Budgerigar Vishnu by Vinod Prasanna - https://goo.gl/wJ36xi DJ by Jahzzar - https://goo.gl/5fZ6UY Quitin' Time by Patrick Lee - https://goo.gl/APcLcz Additional footage thanks to Sandhya's Kitchen, Anastasia Dinastia, water.org a movie by Cal McKinley
लगेगी #entertainment की Sale! और होंगे न नाचने के बहाने फेल, पेश है नए तड़के के साथ "दिल्ली वाली 2.0" Subscribe to our channel for more Bhojpuri Songs: https://youtube.com/c/SaregamaHumBhojpuri Credits: Title :- Delhi Wali 2.0 Singer :- Neelkamal Singh Lyrics :- Raushan Singh Vishwas Music :- Priyanshu Singh Feat :- Mahima Gupta Director & Choreographer:- Lakkie Vishwakarma DOP:- Yogesh Singh Editor :- Rishu Singh Assistant Choreographer:- Ashu & Suresh DI:- Rohit Singh Production:- Aakash Vishwakarma #neelkamalsingh #delhiwali2.0 #saregamahumbhojpuri #mahimagupta #neelkamalsinghsong #bhojpurisong #bhojpurigaana Learn to sing in Sur with AI Powered Personal Music Teacher- Padhanisa by Saregama. Download Padhanisa App now; https://sarega.ma/padhanisa Follow us on: Facebook...
नमस्ते and Welcome to this aerial drone footage of Delhi, capital of India, in 4K UHD resolution! Delhi, India 4K ULTRA HD 60 FPS Collection of Drone & Aerial Footage Please Subscribe our New YouTube Channel & show us your love & support. Exploropia 8K Link Below: 👇 👇 👇 https://www.youtube.com/@Exploropia8K 📌 Please Keep Supporting us guys✌️!!!! 📌 Make sure to Subscribe ▶️ with Bell 🔔 turned on & don't miss out on New Videos!!!! ________ Watch also INDIA 🇮🇳 in 8K : https://youtu.be/x78fARg3yow Watch Mumbai, Maharashtra, India 🇮🇳 in 4K : https://youtu.be/afDUnE-a-us Watch Bengaluru, (Bangalore), India 🇮🇳 in 4K : https://youtu.be/eEr56MfFP6I Watch Udaipur, Rajasthan, India 🇮🇳 in 4K : https://youtu.be/awbSDvDCc_M Watch Calgary, Alberta, Canada 🇨🇦 in 4K : https://youtu.be/e3UyFOJ5d3M W...
✅ Don't forget to SUBSCRIBE to my channel by clicking here ➞ https://www.youtube.com/@MoreTravelsWithDrewBinsky ▶️ Watch my favorite videos ➞ https://www.youtube.com/watch?v=zMLHoHf4VWU&list=PLv8sTdl47iyDHwD2MPKeGlJo3rzP7pfr1 Delhi is certainly not for the faint-hearted! I decided to walk alone through the busiest street in town, which at rush hour, is the most crowded street in the world! Would you ever do this by yourself?! Also, do you like India? I have a love-hate relationship with the country, but something keeps pulling me back! Follow my travels on Instagram! https://instagram.com/drewbinsky This channel is actually my 2nd YouTube channel, if you want to see longer documentaries from my travels, then head over to my main channel! https://www.youtube.com/drewbinsky Follow m...
India's big cities are famous for their lively hustle and bustle. A documentary exploring beauty, justice, health and beer in India’s capital territory, Delhi. Delhi has a population of almost twenty million, and to film-maker Markus Spieker it sometimes seems as if Delhi has twice as many stories to tell: stories ranging from the traditional to the modern, from happiness to misery. He takes the viewer into the heart of the Old Town and into the modern Cyberhub, into malodorous canteens and exclusive restaurants. India is a country with incredible stories and huge contrasts. Metropolises like Delhi are growing at a tremendous rate. No matter how well you know the area, there is always something new to discover. As well as street cafés and exclusive restaurants, this documentary visits I...
East Delhi (aka Trans Yamuna) is an administrative district of the National Capital Territory of Delhi in India. It is bounded by the Yamuna River on the west, North East Delhi to the north, Ghaziabad District of Uttar Pradesh state to the east, and Gautam Buddha Nagar District of Uttar Pradesh to the south.
East Delhi has a population of 1,448,770 (2001 census) and an area of 64 km², with a population density of 22,638 persons per km².
Administratively, the district is divided into three subdivisions: Gandhi Nagar, Preet Vihar, and Vivek Vihar.
According to the 2011 census East Delhi has a population of 1,707,725, roughly equal to the nation of The Gambia or the US state of Nebraska. This gives it a ranking of 284th in India (out of a total of 640). The district has a population density of 26,683 inhabitants per square kilometre (69,110/sq mi) . Its population growth rate over the decade 2001-2011 was 16.68%. East Delhi has a sex ratio of 883 females for every 1000 males, and a literacy rate of 88.75%.