- published: 13 Dec 2024
- views: 12638
'+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; })); }); -->
Khyber Pakhtunkhwa (KP or KPK; Urdu: خیبر پختونخوا ; Pashto: خیبر پښتونخوا) is one of the four provinces of Pakistan, located in the northwestern region of the country. It was formerly known as North-West Frontier Province (NWFP), commonly called Sarhad in Urdu, which means "frontier." Its provincial capital and largest city is Peshawar, followed by Mardan. It shares borders with the Federally Administered Tribal Areas to the west; Gilgit–Baltistan to the northeast; Azad Kashmir, Islamabad and Punjab to the east and southeast. Balochistan lies to the southeast. Khyber Pakhtunkhwa also shares an international border with the Afghanistan, connected through the Khyber Pass.
It is also the site of the ancient kingdom Gandhara, the ruins of its capital, Pushkalavati, (modern day Charsadda), and the most prominent center of learning in the Peshawar Valley, Takht-i-Bahi. It has been under the suzerainty of the Persians, Greeks, Mauryans, Kushans, Shahis, Ghaznavids, Mughals, Sikhs, and British Empire throughout its long history. Khyber Pakhtunkhwa is the third largest province of Pakistan by the size of both population and economy though it is geographically the smallest of four. It comprises 10.5% of Pakistan's economy, and is home to 11.9% of Pakistan's total population, with the majority of the province's inhabitants being Pashtuns , Hazarewal, Chitrali, and Kohistanis.
The Khyber Pakhtunkhwa Department of Excise & Taxation is concerned with Excise & Taxation in the Pakistan province of Khyber Pakhtunkhwa. It is headed by the Khyber Pakhtunkhwa Minister of Excise & Taxation, who is a member of the Chief Minister's Cabinet.
Mr. Mian Jamshed-ud-Din was appointed as Minister of Excise & Taxation by Chief Minister of KP Pervez Khattak on May 07, 2014.
The department was created on August 14, 1973. This department's main purpose is to create jobs, promote Excise and Taxation growth, encourage sustainable development and improve standards of living for all citizens of Khyber Pakhtunkhwa. The department is currently headed by Minister Mian Jamshed-ud-Din.
The Department is under the control and supervision of a Khyber Pakhtunkhwa Minister of Excise and Taxation, a political appointee of the Chief Minister of Khyber Pakhtunkhwa. The Excise and Taxation Minister is assisted in managing the Department by a Secretary of Excise and Taxation, also appointed by the Chief Minister, who assumes the duties of the Minister in his absence.
Swabi (Pashto: صوابی) is the capital of Swabi District in the Khyber Pakhtunkhwa province of Pakistan. Swabi is one the big city in KPK. It is located at 34°7'0N 72°28'0E.
Coordinates: 34°07′N 72°28′E / 34.117°N 72.467°E / 34.117; 72.467
#booni #upperchitral #culture #tourism #Malakand #touristplace #mountians #paharonkasafar #DiscoverPakistan Booni Upper Chitral Women Bazar | Explore Largest District of Khyber Pakhtunkhwa | Paharon Ka Safar Watch More Videos: https://youtu.be/QLl2Jc7vyx8?si=5DyRx99OMz-l6rcg https://www.youtube.com/watch?v=_4FN2EwLtbo https://www.youtube.com/watch?v=SPpvRwKP2t8
Join me as I travel from Gilgit Baltistan to Khyber Pakhtunkhwa (KPK), exploring some of Pakistan's most stunning landscapes. From navigating a strict police checkpoint to reaching the breathtaking Shandur Pass and the beautiful Qaqlascht Plateau, this journey is for true adventure lovers. Chapters: 0:00 Boys selling fish as pets 0:34 About to leave Gilgit Baltistan 1:15 A difficult police checkpoint at KPK 3:41 Rooftop of the world, Shandur Pass 4:31 Low caffeine problems - where is my chai? 5:16, Arriving in KPK and my first chai! 5:57 Chai and chips! 6:48 Pakistani biscuits - Rio! 7:11 KPK Beauty landscapes 7:35 My first thoughts on KPK 8:51 Waking up in Booni 10:07 Bad hair day 11:01 The Qaqlascht Plateau 11:46 Experiencing the Qaqlascht plateau on my own 13:28 Heading to a view over...
Use the code ‘MVLIVE’ to get Our Courses at a Maximum discount! Hurry Enroll Now : https://bit.ly/3QB3wB0 For any UPSC CSE course-related queries, please WhatsApp - https://bit.ly/wame8952084937 UPSC IAS Live GS Foundation P2I 2025 Batch 8 : https://bit.ly/3QB3wB0 Batch Starting on 20th May 2024 | Daily Live Classes at 8:00 AM Hurry Enroll Now : https://bit.ly/3QB3wB0 UPSC IAS Live GS Foundation 2025 P2I Offline Course - ORN : https://bit.ly/3JQvG7d Offline Classes Starting on 27th May 2024, 6:00 PM Hurry Enroll Now : https://bit.ly/3JQvG7d UPSC IAS Live GS Foundation 2025 P2I Hindi Batch 8 बैच 17 मई 2024 से शुरू हो रहा है | बैच का समय सुबह 8:00 बजे Hurry Enroll Now : https://bit.ly/3UT1kat UPSC IAS Live GS Foundation 2025 P2I English Batch 6 Batch Starting on 17th May 2024 | Daily L...
Most of my trip to Pakistan was spent in the mountains, but I knew my trip would not be complete without seeing a few Pakistani cities and meeting the people and culture. Peshawar was the perfect place to experience both. Situated in the northwest of the country, on the edge of the Khyber pass to Afghanistan, lies the historic Silk Road city. Not many tourists make it here lending itself to a very authentic look into the lives of the Pakistani people. The hospitality was overwhelming as we shared many meals with complete strangers and couldn’t walk down the street without shaking a few hands. We had a few days to wander these ancient streets, and here’s how it went…. If you like these videos, support my channel by becoming a Patron at www.patreon.com/thetravelingzam Prints available at w...
Visiting Pak - Afghan Border, Khyber Pass, Landi Kotal, Haji Ayub Fort 👇Previous videos:👇 Peshawar mein Welcome | Mutton Karahi - Biryani - Faluda | Maza Agya😋 https://www.youtube.com/watch?v=KZ7BR2xrqY4 Exploring My Home Town For The First Time On Bike 🏍️ 😬 https://www.youtube.com/watch?v=mpFXPdxxtIM My Home where I was born in Pakistan | Mera Abaai Village | Bachpan Yaad Aa Gaya 💛 https://www.youtube.com/watch?v=MkZGH5a2x3c Friday Life in my Home Town Dera Ismail Khan | Sheeshu Pulao 😋 Gad Gad Ice Cream https://www.youtube.com/watch?v=wSTPWYwTF-I Our Welcome in Dera Ismail Khan Pakistan 🇵🇰 - Desi Fruits aur Biryani 😋 https://www.youtube.com/watch?v=t-6p_P4AV8E Exploring Multan Pakistan 🇵🇰 Famous Naveed Pulaao 😋 🥩🍗 Bahauddin Zakariya & Shah Rukn E Alam https://www.youtube.com/watch?...
On December 9, 2024, an intelligence-based operation in Dera Ismail Khan, Khyber Pakhtunkhwa, led to the killing of two terrorists and the arrest of one, as part of efforts against Tehreek-i-Taliban Pakistan (TTP) militants. Security forces seized weapons and ammunition, and the operation received praise from President Zardari and PM Shehbaz Sharif. --------------------------------------------------------------------------------------------------------------------------- Dawn News English is your window into the latest news, insight, and features from South Asia and beyond. Official Facebook: https://www.facebook.com/dawndotcom/ Official Twitter: https://twitter.com/dawn_com Website: www.dawn.com Official Instagram: https://www.instagram.com/dawnnewsenglish #kpk #deraismailkhan #terro...
Swabi is a city in Khyber Pakhtunkhwa province of Pakistan, located near the banks of the Indus River. It is the 73rd-largest city in Pakistan and the eighth largest in the province of Khyber Pakhtunkhwa. Swabi is also a key city in Mardan Division, where it is the second-largest city. #paharonkasafar #swabi #discoverpakistantv Discover Pakistan is the First Satellite Tourism TV in Pakistan, launched with the aim of promoting Tourism and the soft image of Pakistan locally and internationally. Discover Pakistan exhibits natural wonders and picture-perfect scenic beauty of Pakistan in ultra HD format. Pakistan is gifted with many beautiful carved landscapes, breathtaking valleys, a series of natural lakes, beaches, and rich history. Team Discover Pakistan is determined to play its r...
🇵🇰 MANAKY: https://www.manaky.com 🎥 MANAKY: https://www.instagram.com/manakyinc/ As my adventures in Pakistan continued, I headed from the city of Peshawar to the world-famous Khyber Pass to go on an exciting Afghan street food tour in the town of Jamrud, Pakistan. Let’s go explore the sights, sounds, and flavors of the Khyber Pass! My guide Rashid from Manaky and I began our Khyber Pass street food tour in nearby Peshawar. We’d be taking a day trip to get to the Khyber Pass, which is a mountain pass just 30 minutes from the Pakistan/Afghanistan border. It was once part of the ancient Silk Road, so lots of explorers and invaders, including Alexander the Great, passed through there! 👕 DAVID’S BEEN HERE MERCH: https://teespring.com/stores/davids-been-here I couldn’t wait to explore i...
Part of India on Film: 1899 – 1947 This collection of newly digitised films is part of the BFI's contribution to the UK-India Year of Culture 2017, in partnership with the British Council. View more films on BFI Player http://player.bfi.org.uk/collections/india-on-film-1899-1947/ (UK only) Excerpt from "Kagan Valley (1931)" Amateur travelogue of the Kagan Valley and Darband, Pakistan. This early amateur film visits the alpine-climate of Kagan (or Kaghan) Valley and the village of Darband, both located in the north-western region of Pakistan. The travelogue documents the journey through the valley and over numerous streams and rivers, including using the innovate method of inflated goat skins. Along the way they also encounter dancing children, a local band, and a demonstration of tra...
At least 30 people have been killed in renewed fighting in the Kurram district of Pakistan's northwest Khyber Paktunkhwa province. It's the latest round of violence there this week. But the fighting between Shia and Sunni Muslim groups has lasted for months. On Thursday 48 people were killed in an attack apparently targeting Shia Muslims travelling in a convoy. The region bordering Afghanistan has a long history of sectarian violence. Al Jazeera’s Kamal Hyder has the latest from Islamabad. Subscribe to our channel: http://bit.ly/AJSubscribe Follow us on Twitter: https://twitter.com/AJEnglish Find us on Facebook: https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ Download AJE Mobile App...
This video to totally base on how to Calculate Commercial building property Tax by KP excise and taxation Department . Conversion of measurement to Property tax. #ets #excisetaxessolution #excise andtaxationdepartment #aftabahmad #KPExciseCalculatepropertytax this is the link, You can watch and learn how to Make Measurement of any commercial Blinding https://www.youtube.com/watch?v=hl0xkyEyE8k
Khyber Pakhtunkhwa Excise Token Tax | KP Excise token Tax | Vehicle Register in KP excise Token tax Hi I am Aftab Ahmad, You watching Excise Taxes Solution. About this Video i have fully discuss about Khyber Pakhtunkhwa Excise Token Tax, all vehicles resisted in KP excise can pay their Tokent tax any branch of Khyber Pakhtunkhwa Excise and taxation department, Like Peshawar, Mardan Charsada etc, Different between Filer and non Filer in respect rebate getting by Filer also discuses this vedio. three months ie July, August and September rebate moths( 20% discount on Token amount ) #KhyberPakhtunkhwaExciseTokenTax #Tokentax #aftabahmad #ets #excisetaxessolution #ict #exciseandtaxationdepartment in this Channel i am uploading video regarding All Excise and other Taxes.
EXCISE, TAXATION DEPARTMENT KHYBER PAKHTUNKHWA Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for 'Fair Use for purposes such as criticism, comment, news reporting, teaching, scholarship, and research, Fair use is a permitted by copyright statute that might otherwise be infringing, Non-profit, educational, or personal use tips the balance in favor of fair use. Contact info:- https://twitter.com/MArifkhan11 https://www.facebook.com/uniqueforces https://www.instagram.com/marifkhan11
Assalam O Alikum In this video I am gonna telling you that KP Excise Taxation & Narcotics Control Jobs 2022 and we will completely disscus about anti narcotics jobs . people wants to know about anf jobs 2022 and job Alerts . so in this video we will gain knowledge about murree jobs and all government jobs. The main points that we will cover in this video are following: 1:sub inspector jobs 2022 2:audit & accounts 3:computer operator jobs 2022 4:stenographer jobs 5:Wireless Operator 6:constable jobs 7:anti narcotics jobs 9:anf jobs 2022 10:excise and taxation job so through this channel we give you job alerts and updates about government , private jobs . so subscribe this channel for latest updates about jobs.
#kpcmscu
Narcotics control of kpk excise
How to Pay Online Vehicle Token Tax in 2021? Vehicle Registration and Transfer from KPK Excise Download Mobile App: https://bit.ly/3wrT8lR For any type of query, copyright and other issue please contact us Facebook:www.facebook.com/smarttechexpert Twitter: www.twitter.com/smarttechxpert Website: https://mobileapps.pk Instragram: http://instragram.com/mobileapps.pk Linkedin: www.linkedin.com/in/syedimtiazahmedpk #SmartTechExpert #Vehicle_Token_Tax #ZamaApp Join my YouTube Channel Job Updates Info https://bit.ly/3k5EES4 More Video Tutorials from Smart Tech Expert How to Pay Online Vehicle Token Tax in 2021? Vehicle Registration and Transfer from Islamabad Excise https://www.youtube.com/watch?v=AsOQG8SR6IA How to Apply Foreign Exchange Remittance Card? FERC | OPF Membership Card htt...
A video about Excise, Taxation & Narcotics Control Department Khyber Pakhtunkhwa, A short Description and introduction of Excise,Taxation and Narcotics Control Department.
Swabi is a city in Khyber Pakhtunkhwa province of Pakistan, located near the banks of the Indus River. It is the 73rd-largest city in Pakistan and the eighth largest in the province of Khyber Pakhtunkhwa. Swabi is also a key city in Mardan Division, where it is the second-largest city. #paharonkasafar #swabi #discoverpakistantv Discover Pakistan is the First Satellite Tourism TV in Pakistan, launched with the aim of promoting Tourism and the soft image of Pakistan locally and internationally. Discover Pakistan exhibits natural wonders and picture-perfect scenic beauty of Pakistan in ultra HD format. Pakistan is gifted with many beautiful carved landscapes, breathtaking valleys, a series of natural lakes, beaches, and rich history. Team Discover Pakistan is determined to play its r...
🌎🎥 welcome to my official YouTube channel subscribe not to miss my new contact #swabi #beautiful #kpk #pakistan #youtubeislife #subscriber #youtubeguru #youtubecontent #newvideo #subscribers #youtubevideo #youtub #youtuber #youtubevideos #drone #shoot #hund #museum #university #stepa #tarbela #sports #complex #shahmansoortowan #Gajukhan #M1 #swabi #interchange #foodsstreet #streetfood
Swabi is famous for its brave people and beautiful places. Lying between the mighty Indus and Kabul rivers, the district has vast lush green fields of crops, tree-covered mountains and water canal system. Swabi district is home to many excellent educational institutes, including Ghulam Ishaq Khan Institute of Engineering Sciences and Technology, University of Swabi, Women University Swabi, Gajju Khan Medical College and Karnal Sher Khan Cadet College. In the video-documentary on Swabi, the camera clicks on the River Indus and then pictures an overview of Topi City, one of the four tehsils of the Swabi district, and fields of maize crop and others. The University of Swabi is another segment filmed in the documentary. The magnificent buildings adjacent to the Peshawar-Islamabad Motorway are ...
District Swabi is a district in the Mardan Division of Khyber Pakhtunkhwa province in Pakistan. It lies between the Indus and Kabul Rivers. Before becoming a district in 1988, it was a tehsil within Mardan District. #swabi #paharonkasafar #discoverpakistantv Discover Pakistan is the First Satellite Tourism TV in Pakistan, launched with the aim of promoting Tourism and the soft image of Pakistan locally and internationally. Discover Pakistan exhibits natural wonders and picture-perfect scenic beauty of Pakistan in ultra HD format. Pakistan is gifted with many beautiful carved landscapes, breathtaking valleys, a series of natural lakes, beaches, and rich history. Team Discover Pakistan is determined to play its role in changing the country’s perception globally. Soon enough, Discover...
Pashto Films Pashto full movie 2019 Pashto Film Pashto film 2019 Pashto HD film Pashto HD film 2019 Pashto Movie Pashto Movies Pashto Movie 2019 Pashto Tele Film Pashto Drama Pashto New Tele Film 2019 Pashto New Drama 2019 Pashto New HD Tele Film 2019 Pashto new Song 2018 Pashto Best Song 2018 Rabab mangi Tang Takor Pashto Funny Video 2018 Nazia Iqbal new Song 2018 Gul Panra New Song 2018 Rahim Shah New Song 2018 Shahsawar New Song 2018 Nadia New Dance 2018 Pashto New Drama 2018 Karan Khan New Tapey Shahid Khan song 2018 Shahid Khan Pashto film 2018 Shahid Film's Production Pashto star Shahid Khan Shahid Khan Pashto HD film Shahid Khan Pashto HD film 2018 Jahangir Khan Pashto HD film 2018 Jahangir Khan Pashto new tele film 2018 Pashto New HD tele film 2018...
Thanks for watching stay tuned with us for more interesting videos. Facebook:https://www.facebook.com/Furqan-Malik-105642767770732/ instagram:https://www.instagram.com/furqanmalik839/ #Swabi #Sawabai#documentary#Furqanmalik#dam#of#kpk#furqanmalik#furqan More Videos: Gazi Dam vlog :https://www.youtube.com/watch?v=agART7aTXK4&t=9s Hund village:https://www.youtube.com/watch?v=opizPb_eC2E&t=10s Kundal Dam:https://www.youtube.com/watch?v=opizPb_eC2E Travel To BeerGali Swabi:https://youtu.be/VPZagLYk3xU Travel to Mahaban Malka:https://www.youtube.com/watch?v=E2KGIdVBkKI&t=261s Travel to Buneer:https://www.youtube.com/watch?v=Os9I_8_Gd3U&t=83s Iftari in Seaside:https://www.youtube.com/watch?v=Os9I_8_Gd3U&t=83s Vlog With Mashal Rapstar:https://www.youtube.com/watch?v=Os9I_8_Gd3U&t=83s If Y...
Swabi City Tour In 4K | SWABI Beautiful City of Pakistan Swabi Lies between the Indus River and Kabul River, in the North-West Frontier Province of Pakistan. Its residents are referred to as 'Swabva'l.' It is the fourth most populous district of the province. The Mandanr Yusufzai subsection of the Yousafzai clan of the Pukhtoons form a majority of the districts population. Swabi District is currently subdivided into 4 Tehsils. Tobacco is a cash crop of Swabi, along with vegetables, wheat, sugar cane and maize. Its climate is well suited for citrus in particular, but many other fruits like watermelon, peaches and apricots are also grown there. It also boasts one of the most prestigious institutions of Pakistan, the Ghulam Ishaq Khan Institute of Engineering Sciences and Technology locat...
In this programe our host visit Swabi, Swabi is a city in Khyber Pakhtunkhwa province of Pakistan, located near the banks of the Indus River. It is the 73rd largest city of Pakistan and eighth largest in the province of Khyber Pakhtunkhwa. Swabi is also a key city in Mardan Division, where it is the second-largest city. #paharonkasafar #discoverpakistantv Discover Pakistan is the First Satellite Tourism TV in Pakistan, launched with the aim of promoting Tourism and the soft image of Pakistan locally and internationally. Discover Pakistan exhibits natural wonders and picture-perfect scenic beauty of Pakistan in ultra HD format. Pakistan is gifted with many beautiful carved landscapes, breathtaking valleys, a series of natural lakes, beaches, and rich history. Team Discover Pakistan i...
nan pa bacha khan medical vomplex ki da doctor da laparwahy la waji yao kas mar sho #Bachakhanmedicalcomplex #Bkmc
Khyber Pakhtunkhwa (KP or KPK; Urdu: خیبر پختونخوا ; Pashto: خیبر پښتونخوا) is one of the four provinces of Pakistan, located in the northwestern region of the country. It was formerly known as North-West Frontier Province (NWFP), commonly called Sarhad in Urdu, which means "frontier." Its provincial capital and largest city is Peshawar, followed by Mardan. It shares borders with the Federally Administered Tribal Areas to the west; Gilgit–Baltistan to the northeast; Azad Kashmir, Islamabad and Punjab to the east and southeast. Balochistan lies to the southeast. Khyber Pakhtunkhwa also shares an international border with the Afghanistan, connected through the Khyber Pass.
It is also the site of the ancient kingdom Gandhara, the ruins of its capital, Pushkalavati, (modern day Charsadda), and the most prominent center of learning in the Peshawar Valley, Takht-i-Bahi. It has been under the suzerainty of the Persians, Greeks, Mauryans, Kushans, Shahis, Ghaznavids, Mughals, Sikhs, and British Empire throughout its long history. Khyber Pakhtunkhwa is the third largest province of Pakistan by the size of both population and economy though it is geographically the smallest of four. It comprises 10.5% of Pakistan's economy, and is home to 11.9% of Pakistan's total population, with the majority of the province's inhabitants being Pashtuns , Hazarewal, Chitrali, and Kohistanis.