- published: 17 Jun 2024
- views: 521249
'+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; })); }); -->
The Indian Army is the land-based branch and the largest component of the Indian Armed Forces. The President of India serves as Commander-in-Chief of the army, and it is commanded by the Chief of Army Staff (COAS), who is a four-star General. Two officers have been conferred the rank of Field marshal, a Five-star rank, which is a ceremonial position of great honour. The Indian Army originated from the armies of the East India Company, which eventually became the British Indian Army and finally the national army after independence. The units and regiments of the Indian Army have diverse histories and have participated in a number of battles and campaigns across the world, earning a large number of battle and theatre honours before and after Independence.
The primary mission of the Indian Army is to ensure national security and unity, defending the nation from external aggression and threats, and maintaining peace and security within its borders. It conducts humanitarian rescue operations during natural calamities and other disturbances, like Operation Surya Hope, and can also be requisitioned by the government to cope with internal threats. It is a major component of national power alongside the Indian Navy and the Indian Air Force. The army has been involved in four wars with neighbouring Pakistan and one with China. Other major operations undertaken by the army include Operation Vijay, Operation Meghdoot and Operation Cactus. Apart from conflicts, the army has conducted large peace time exercises like Operation Brasstacks and Exercise Shoorveer, and it has also been an active participant in numerous United Nations peacekeeping missions including the ones in Cyprus, Lebanon, Congo, Angola, Cambodia, Vietnam, Namibia, El Salvador, Liberia, Mozambique and Somalia.
The Indian Army was the principal army of India before independence from the United Kingdom in 1947. It was responsible for the defence of both British India and the Princely states, which could also have their own armies. The Indian Army was an important part of the British Empire's forces, both in India and abroad, particularly during the First World War and the Second World War.
The term "Indian Army" appears to have been first used informally, as a collective description of the Presidency armies (the Bengal Army, the Madras Army and the Bombay Army) of the Presidencies of British India, particularly after the Indian Rebellion. The first army officially called the "Indian Army" was raised by the government of India in 1895, existing alongside the three long-established presidency armies. However, in 1903 the Indian Army absorbed these three armies. The Indian Army should not be confused with the "Army of India" (1903–1947) which was the Indian Army itself plus the "British Army in India" (British units sent to India).
Pune (IPA: [puɳe] English pronunciation: /ˈpuːnə/;) (Marathi: पुणे) is the ninth-most populous city in India and the second largest in the state of Maharashtra after the state capital city of Mumbai. Pune is also the 101st largest city in the world, by population.
It is situated 560 metres (1,837 feet) above sea level on the Deccan plateau, on the right bank of the Mutha river. Pune city is the administrative headquarters of Pune district and was once the centre of power of the Maratha Empire established by Shivaji Maharaj.
In the 18th century, Pune became the political centre of the Indian subcontinent, as the seat of Peshwas who were the prime ministers of the Maratha Empire.
Pune is considered the cultural capital of Maharashtra. Since the 1950s and 1960s, Pune has a traditional old-economic base . Most of the old industries continue to grow. The city is also known for its manufacturing and automobiles industries, as well as for research institutes of information technology(IT), education, management and training, which attract migrants, students, and professionals from India, South East Asia, the Middle East, and Africa. Pune is also one of the fastest growing cities in the Asia-Pacific region. The ‘Mercer 2015 Quality of Living rankings’ evaluated local living conditions in more than 440 cities around the world where Pune ranked at 145, second in India after Hyderabad(138). It also highlights Pune among evolving business centers and emerging 9 cities around the world with citation "Hosts IT and automotive companies"
Pune Lok Sabha constituency (Marathi: पुणे लोकसभा मतदारसंघ) is one of the 48 Lok Sabha (parliamentary) constituencies in Maharashtra state in western India.
Presently, Pune Lok Sabha constituency comprises six Vidhan Sabha (legislative assembly) segments. These segments are:
Key
INC Praja Socialist Party SSP BLD BJP
Pune may refer to:
How's the JOSH?? Indian Army Jai Hind🙌 #Indianarmy #IMA #armyofficers
#SandeseAateHai Indian Military’s 72 Hours Hideout At Rajasthan Border 📍Suratgarh, Rajasthan Can you believe it? They carry everything with them, food, water, and weapon and remain hidden in their hideout, gathering intelligence on the enemy. This is known as Trans-Border Patrolling. P.S- This is just for demonstration #explorepage #sandese #military #suratgarh #militarytraining #training #rajasthan #army #indianarmy #armyofficers
Follow me in insta- @anmol.__.chaudhary
Order 'Build, Don't Talk' (in English) here: https://amzn.eu/d/eCfijRu Order 'Build Don't Talk' (in Hindi) here: https://amzn.eu/d/4wZISO0 -------------- Subscribe To Our Other YouTube Channels:- https://www.youtube.com/@rajshamaniclips https://www.youtube.com/@RajShamani.Shorts 🎧 Stream Figuring Out episodes on Spotify: https://open.spotify.com/show/736rhmW7vilNgkFFo8aDz4 📺 Watch Figuring Out episodes on YouTube: https://youtube.com/playlist?list=PLE0Jo6NF_JYO5-phess8GKafKMtPv3tfZ --------------- My gear for shooting this video: Canon EOS 200D II 24.1MP DSLR Camera: https://amzn.to/3GuiPFK Canon EF50MM F/1.8 STM Lens: https://amzn.to/3WZOSoi Canon EF-S 18-55mm f/3.5-5.6: https://amzn.to/3ZpKBMy Yunteng Aluminium Tripod (Vct-690, Black): https://amzn.to/3ItEzV0 Zoom H6 All Black...
New Indian Army Ringtone 2025 | New Army Ringtone | Indian Army Instrumental Ringtone|Army Call Tone indian army ringtone song, indian army #ringtone2020, indian army ringtone dj remix, indian army ringtone tik tok, indian army ringtone instrumental, indian army ringtone dj, indian army #ringtonemusic,/ indian army ringtone only music, indian army ringtone audio, indian army #ringtoneall indian army ringtone app, indian army ringtone akki, indian army ringtone 15 august, indian army ringtone 15 august 2020, indian army ringtone indian army ringtone, indian army song ringtone all, hindi army ringtone, indian army ringtone best, indian army ringtone bgm, indian army ringtone banjo, indian army ringtone border, indian army ringtone bansuri, indian army brand song ringtone, indian army best r...
Indian Army soldier mother and son deshbhakti motivational shorts video Bhai behen ka pyar love shorts video #funny #papa #comedyvideos #indianarmy #military #family #mother #viralvideo #ytshorts
Indian troops volunteered to fight in the British Indian Army during the Second World War. Why? And how effective were they? Well, today we're going to look at how they were recruited and trained, and how they performed in the North African Campaign and the Burma Campaign. 🔔 Subscribe for more History content: https://www.youtube.com/channel/UCfZz8F37oSJ2rtcEJHM2kCg?sub_confirmation=1 ⏲️ Videos EVERY Monday at 5pm GMT (depending on season, check for British Summer Time). The thumbnail for this video was created by Terri Young. Need graphics? Check out her website https://www.terriyoungdesigns.co.uk/ - - - - - 📚 BIBLIOGRAPHY / SOURCES 📚 Specific source list for this video https://docs.google.com/spreadsheets/d/1O4xlA79XIr3DmYGEbiA16QIwsWHAStIidcUjdQEA7og/edit?usp=sharing Full list of...
Faction: The Indian Army The First World War When the war broke out in 1914 there was growing political unrest in India against British rule. Germany had even tried to stir up anti-british movements and rebellion. However such fears were put to rest when India rallied to Britain’s cause. It was believed that India’s proposal of independence could best be served this way. Please consider supporting our videos on Patreon https://www.patreon.com/simplehistory?ty=c Get your copy of Simple History: World War I today! https://www.amazon.com/Simple-History-World-War-I/dp/1536830402/ref=asap_bc?ie=UTF8 Simple history gives you the facts, simple! See the book collection here: Amazon USA http://www.amazon.com/Daniel-Turner/e/B00H5TYLAE/ref=sr_ntt_srch_lnk_1?qid=1457289367&sr=8-1 Ama...
The Modern Indian Army V The British Indian Army at its peak!
Havildar Ishar Singh, a soldier in the British Indian Army, leads 21 Sikh soldiers in a fight against 10,000 Pashtun invaders. However, what unfolds is the greatest last stand wars of all time. #themovierecap #channelforsale #peacenowar Channel for sale This channel is for sale...!!! To all wealthy individuals who want to buy a YouTube channel for fun, contact [email protected]
British used canon executions to instil fear in Indian subjects during the British Empire
GAUMONT BRITISH NEWSREEL (REUTERS) To license this film, visit https://www.britishpathe.com/video/VLVAB3WVERD8XIPH455Y21ZWQBEEX-INDIAN-TROOPS-ARRIVE-IN-FRANCE-DURING-WWII Contingent of Indian soldiers arrive, unload their mules and ceremonial display of the British Raj Full Description: FRANCE: EXT INDIA. Indian troops in France:mules en masse. MULES On quayside:l being led from horse car. Military - Active Armed Forces, WWII, World War Two, World War II, Second World War, War, Allied, Allies, India, cavalry, Army Background: Contingent of Indian soldiers arrive, unload their mules and ceremonial display of the British Raj FILM ID: VLVAB3WVERD8XIPH455Y21ZWQBEEX To license this film, visit https://www.britishpathe.com/video/VLVAB3WVERD8XIPH455Y21ZWQBEEX-INDIAN-TROOPS-ARRIVE-IN-F...
GAUMONT BRITISH NEWSREEL (REUTERS) To license this film, visit https://www.britishpathe.com/video/VLVA5O7ZWOVR3I0RPRKH5QS4RKXN1-PRAISES-FOR-THE-INDIAN-ARMY General Claude Auchinleck gives an address about the war efforts of the Indian Army Full Description: SLATE INFORMATION: Gen. Auchinleck Praises Indian Troops INDIA: INT/EXT AUCHINLECK GENERAL, Sir Claude Inspects Indian troops in Middle East MILITARY BRITISH. General Auchinleck inspects Indian troops in Middle East Personalities - Armed Forces; India; Military - Active The Auk, field marshals, Indian Empire, tank, tanks, British Indian Army, World War II, World War Two, WWII, war, Allies, Second World War, troops, soldiers, infantry, marching Background: General Claude Auchinleck gives an address about the war efforts of t...
Number of military equipment of the United Kingdom and India.
In this presentation Dr Corey Reigel takes a look at the strategic role played by the British Indian Army in World War I. In the context of the campaigns in the Middle East and Africa, the manpower of the Indian Army was a critical part of the Allies’ war effort in those theatres – a fact sometimes overlooked. Recorded at the Western Front Association's East Coast (USA) Branch Fall 2013 WW1 History Symposium. If you enjoy this video, please subscribe to our YouTube channel ! The Western Front Association is a UK registered charity. The Western Front Association: https://www.westernfrontassociation.com Become a member: https://www.westernfrontassociation.com/membership Find 100s of Articles on the Great War of 1914-18: https://www.westernfrontassociation.com/world-war-i-articles Fi...
#punecrime #punenews #crimenews गुन्हेगारीचं प्रणाम पुण्यात दिवसागणिक वाढत चाललंय. पुण्याच्या येरवडा पोलीस स्टेशन हद्दीत मंगळवारी संध्याकाळी WNS कॉल सेंटर इमारतीच्या पार्किंगमध्ये पैशांच्या वादावरुन 28 वर्षीय तरुणाणं त्याची सहकारी असलेल्या च्याचच कंपनीत काम करणाऱ्या तरुणीवर चाकूने हल्ला केला. नेमकं काय घडलं? या दोघांमध्ये वाद का झाला? 🔴लॉग इन करा: https://www.mumbaitak.in/ Follow us on : Google News : https://news.google.com/publications/CAAqBwgKMLeLpAsw-pW8Aw?hl=mr&gl=IN&ceid=IN%3Amr Facebook: https://www.facebook.com/mumbaitak Instagram: https://www.instagram.com/mumbaitak Twitter: https://twitter.com/mumbai_tak https://www.youtube.com/playlist?list=PLzHYo6L3SZJGBWc_BPfqMt5Yq24d_AXCa #maharashtra #marathi #marathinews इंडिया टुडेच्या मुंबई तक या मराठी युट्यूब चॅनलवर आपलं स्वागत. इंड...
In this video we will know complete information about Pune, a major city in the Indian state of Maharashtra. About Pune City : Pune has long been a major educational and cultural centre; former prime minister Jawaharlal Nehru referred to it as the “Oxford and Cambridge of India. _________________________________________ -------Places to visit in Pune city------- (1) Aga Khan Palace (2) Rajgad kila ( Fort ) (3) Osho Ashram (4) Lal Mahal (5) Pune city nightlife (6) National Defence Academy (7) Vetal Tekdi (8) Shaniwar Wada Palace (9) Raja Dinkar Kelkar Museum (10) Explore Parvati Hill ______________________________________ ★For Copyright Matter, please Email us [email protected] ______________________________________ 🌿Thanks for watching this video😎
Pune | Emerging it hub of India | पुणे शहर की ये वीडीयो जरूर देखें | Pune city tourism In this video we will know about the places to visit in Pune city and about this city. पुणे के बारे में जानकारी | पुणे शहर | पुणे में घूमने की जगह Pune city | Pune tourist places | Pune tourism | Explore yrs
For more information visit www.dhanwantarischrysalis.com or call on +91 9834655013 Liposuction, commonly called as lipo, is the process of removing fat from specific areas of the body. These areas can be the abdomen, hips, thighs, buttocks, arms or even the neck. It is a surgical procedure and uses suction technique to pull fat deposits from under the skin. All types of liposuction follow the same basic steps. Fat deposits are broken apart and then removed from the body using anesthesia, saline solution, and cannulas (or vacuum tubes) to suction out the fat from under the skin. The method most surgeons recommend to eligible patients is the VASER liposuction which is an advanced method of liposuction. VASER is the short form for vibration amplification of sound energy at resonance. It is a...
Is Pune worth visiting? Manisha and I spent 3 days there, visiting all the sights and trying all the local food. We'll give you our honest review of Pune and whether it's worth your time. Pune, located in the western state of Maharashtra, India, has a rich history, a vibrant cultural scene, and beautiful natural surroundings. The city offers a wide range of activities to explore and enjoy. Some of the best things to do in Pune include visiting the historical Aga Khan Palace, which played a significant role in India's struggle for independence, exploring the beautiful Shaniwar Wada Palace, and wandering through the charming lanes of the old city. For nature lovers, a visit to the serene Pashan Lake or the stunning Sinhagad Fort is a must. Pune is also known for its delicious street food,...
This is a 4K Cinematic and Informative video of Pune City. Pune City is also known as the "Queen of the Deccan" and "Oxford of East". In this video, you will get a glimpse of the places to visit in Pune which includes the IT parks in Pune, and historic places in Pune. The Video also includes Pune City Facts and Pune City details in cinematic mode with Hindi voice-over. More Details About Pune City. Pune, known as Poona until 1978, is the second-largest metropolitan city in the Indian state of Maharashtra, and the eighth-most populous city in India. It has been ranked as "the most livable city in India" several times. Along with the municipal corporation limits of PCMC and the three cantonment towns of Camp, Khadki, and Dehu Road, Pune forms the urban core of the eponymous Pune Metropolita...
Pune Travel Vlog : https://youtu.be/Kbyr6c9CxVw Shaniwar Wada Vlog : https://youtu.be/84LBez4hFhU Hello Friends, we are back with the another exciting episode, orr aaj hum bat karenge maharashtra ki 2 metro cities mese ek ke bare me, jii haa hum bat karenge "PUNE" ke bare me.! follow me on Instagram : https://www.instagram.com/tourcam_77/?hl=en Credit : In this video, all the audio and images file were downloaded from google and other fabulous online websites. so i would like to gave credit to all i am so thankful them all. Thank You.. so what are you waiting for, get set ready for your next trip to PUNE ! Thank You.. TourCam Tour Cam
We are exploring Pune city in India and right away we are greeted by the hospitality of the locals. This is how Indian's treat foreigners in India. I experience Poona walking around seeing known sights and enjoying local food as I am guided by my impromptu guide Atif.
------------------------------------------------------------------------------------------------------------------------------ My Money Apps: https://bit.ly/3Zg56eR My bestselling books: ‘GET EPIC SHIT DONE’: https://ankurwarikoo.com/getepicshitdone ‘Do Epic Shit’: https://ankurwarikoo.com/doepicshit My gear for shooting this video: 🎥 Sony a7III camera: https://bit.ly/3M42wAV 🎬 Sony FE 24-70 f2.8 Lens: https://bit.ly/3KCCiF0 🎙 Shure SM7B Microphone: https://bit.ly/3O1NAVA 🔆 Fill Light 60W: https://bit.ly/37aJolP 💡 Key Light 150W: https://bit.ly/3O9nyjs 📽 Benro IT15 Tripod for Sony a7III camera: https://bit.ly/3O4PvJ1 Useful links: 20 books for your 20s: https://bit.ly/WarikooBooks 20 online courses for your 20s: https://bit.ly/WarikooOnlineCourses Gadgets that I use: https://bit.ly/...
Label: U
The Indian Army is the land-based branch and the largest component of the Indian Armed Forces. The President of India serves as Commander-in-Chief of the army, and it is commanded by the Chief of Army Staff (COAS), who is a four-star General. Two officers have been conferred the rank of Field marshal, a Five-star rank, which is a ceremonial position of great honour. The Indian Army originated from the armies of the East India Company, which eventually became the British Indian Army and finally the national army after independence. The units and regiments of the Indian Army have diverse histories and have participated in a number of battles and campaigns across the world, earning a large number of battle and theatre honours before and after Independence.
The primary mission of the Indian Army is to ensure national security and unity, defending the nation from external aggression and threats, and maintaining peace and security within its borders. It conducts humanitarian rescue operations during natural calamities and other disturbances, like Operation Surya Hope, and can also be requisitioned by the government to cope with internal threats. It is a major component of national power alongside the Indian Navy and the Indian Air Force. The army has been involved in four wars with neighbouring Pakistan and one with China. Other major operations undertaken by the army include Operation Vijay, Operation Meghdoot and Operation Cactus. Apart from conflicts, the army has conducted large peace time exercises like Operation Brasstacks and Exercise Shoorveer, and it has also been an active participant in numerous United Nations peacekeeping missions including the ones in Cyprus, Lebanon, Congo, Angola, Cambodia, Vietnam, Namibia, El Salvador, Liberia, Mozambique and Somalia.