'+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; })); }); -->

Ministry (collective executive)

A ministry (usually preceded by the definite article, i.e., the ministry) refers to a collective body of government ministers headed by a prime minister or premier. It is described by the Oxford Dictionary as "a period of government under one prime minister”. Although the term "cabinet" can in some circumstances be a synonym, a ministry can be a broader concept which might include office-holders that do not participate in cabinet meetings. Other titles can include "administration" (in the United States) or "government" (in common usage among most parliamentary systems) to describe similar collectives.

The term is primarily used to describe the successive governments of the United Kingdom, Canada, Australia and New Zealand, which share a common parliamentary political heritage. In the United Kingdom, Australia and New Zealand, a new ministry begins after each election, regardless of whether the prime minister remains the same. For example, after winning the 1979 general election, Margaret Thatcher, as prime minister of the United Kingdom, began the First Thatcher ministry. After winning the 1983 general election, she began the Second Thatcher ministry, and so on. In Canada, a new ministry is only formed if the government loses an election.

Of Darkness...

Of Darkness... is a debut studio album released on February 1991 by the Swedish band Therion and it contains songs written in the early years of the band, during the 1980s. The album is indicated by the band itself as an end of its first era.

The album was re-released on 27 November 2000 under Nuclear Blast label as a part of The Early Chapters of Revelation box-set. It contains remastered songs, as well as four bonus tracks.

Recording and production

After releasing the third demo record Time Shall Tell EP in 1990, Therion got attention from the British label Deaf Records, a subsidiary of Peaceville Records, and signed the band's first contract.Of Darkness... was recorded in Swedish studio Sunlight in Stockholm from August to September 1990 and released on February 1991. The initial line-up has not been changed since its last production. The album was produced by Tomas Skogsberg and the band itself.

Songs, lyrical themes and influences

Of Darkness... consists of songs Christofer Johnsson had written in the years of 1987–1989. Despite having newer songs, the band opted to save them for their next full release. The album can be seen as a progressive death metal album in that it contained mainly influences that were not standard to death metal at the time. The album was influenced especially by the Celtic Frost's thrash metal album Into the Pandemonium. Its sound was compared to Dismember (melody), Suffocation and Morpheus (rhythm), Entombed, Napalm Death, Repulsion, Bolt Thrower (guitars), Carcass and other extreme thrash metal and grindcore bands of those days.

The Ministry of Darkness

The Ministry of Darkness was a heel professional wrestling stable in the World Wrestling Federation (WWF) in 1999. Led by The Undertaker, the Ministry was a controversial group with pseudo-Satanic themed storylines, that included rituals and sacrifices.

History

Formation

In October 1998 at the Judgment Day: In Your House pay-per-view event, Paul Bearer turned his back on his son Kane and rejoined the side of Kane's brother The Undertaker. The next night on Raw Is War, The Undertaker announced the Ministry of Darkness and a "plague of evil" that would be unleashed on the WWF, thus making Undertaker a villain. The Undertaker continued to feud with Kane and Stone Cold Steve Austin, which involved segments in which Undertaker hit Austin in the head with a shovel giving him a storyline concussion. On the following Raw Is War one week later, interviews were conducted with Austin throughout the night in his hospital room in a medical center in the San Jose, California area, where the night before at a WWF live event Austin blacked out, as part of the storyline in the lead up to the Buried Alive match.

Podcasts:

  • Collective Responsibility

    This quick video explains the doctrine of Collective Responsibility of the Council of Ministers. (detailed discussion on the website) Website: http://www.lawtutor.in Facebook: https://www.facebook.com/lawtutorindia/

    published: 14 Feb 2017
  • Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COM

    #parcham #parchamclasses #parchampolity ​Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COM This video has all the details about the Council of ministers, its relation with the President, Prime Minister and Parliament. Collective and Individual Responsibility, Kitchen Cabinet. These Polity lectures will be helpful to clear your basic concepts regarding topics. It will be beneficial in UPSC(CDS, EPFO, APFC, Assistant commandant), SSC, and Teaching Exams Indian Polity - By Payal Ma'am: https://www.youtube.com/playlist?list=PLJ0PDUtEYgazGVg-oaZCqfWq0rAt7CJY7 ******************** Sawaal – The CA Objective Quarterly e-Book (Annual Subscription) Has been launched!! App Subscription Link: https://klizz.courses.store/336566?utm_source%3Dother%26utm_med...

    published: 01 Jul 2023
  • Individual & Collective responsibility of Council Of Ministers| BENBYIAS

    SUBJECT- CONSTITUTIONAL & ADMINISTRATIVE LAW TOPIC- CONSTITUTIONAL POSITION OF THE PRESIDENT AND RELATION WITH THE COUNCIL OF MINISTERS Q. What is meant by ‘individual responsibility’ and ‘collective responsibility’ of the Council of Ministers? What would be the consequences of ‘individual responsibility’ in case a Minister of the Government is found guilty of tort of misfeasance by the Supreme Court of India? Comment. UPSC CSE Examination. One can easily fetch the 300+ score in his/her optional and can find place in the personality test stage of this exam. We also provide to the point exam strategy to help you crack this exam in one go not just in Law Optional but also in General Studies Courses and NCERT Mentorship program. BE N BY IAS is an IAS coaching institute established and ru...

    published: 22 Dec 2022
  • What is 'Collective Responsibility'? Describe its significance.

    What is 'Collective Responsibility'? Describe its significance. 📲PW App Link - https://bit.ly/PW_APP 🌐PW Website - https://bit.ly/PW_APP 📌 PHYSICS WALLAH OTHER CHANNELS : 🌐 PhysicsWallah -Alakh Pandey: https://youtube.com/@PhysicsWallah 🌐 Alakh Pandey: https://youtube.com/@alakhpandey1414 🌐 JEE Wallah: https://youtube.com/@jee_wallah 🌐 Competition Wallah: https://youtube.com/@competitionwallah 🌐 PW Foundation: https://youtube.com/c/PhysicsWallahFoundation 🌐 NCERT Wallah : https://www.youtube.com/channel/UC8zCnnfhz-dvIpVdZ1CheuA 🌐 Defence Wallah-NDA: https://youtube.com/channel/UC8OCoGX9tmMneOzIFUTWq2Q 🌐 PhysicsWallah English: https://youtube.com/@EnglishPW 🌐 PW Vidyapeeth: https://youtube.com/@VidyapeethPW 🌐 Commerce Wallah by PW: https://youtube.com/@commercewallahpw 🌐 CA Wall...

    published: 27 Oct 2022
  • Class 11 Political Science Chapter 4 | Prime Minister and Council of Ministers-Executive

    ✔️📚👉 Watch Full Free Course: https://www.magnetbrains.com ✔️📚👉 Get Any Class & Subject's Topic Video Here:- https://www.magnetbrains.com/get-topic-wise-video ✔️📚👉 Get All Subjects Playlists: ​https://www.pabbly.com/out/all-videos-playlist ✔️📚👉 Grab Notes by Expert Teachers Here: https://www.pabbly.com/out/magnet-brains ✔️📚👉 Place Your Queries For Books Here: https://www.magnetbrains.com/booklet ✔️📚👉 Get Books Prepared by Our Expert Teachers at Your Door Step: https://www.magnetbrains.com/book_purchase =============================================== ✅ In this video, ✔️ Class: 11th ✔️ Subject: Political Science ✔️ Chapter: Executive (Chapter 4) ✔️ Topic Name: Prime Minister and Council of Ministers - Executive ✔️ Topics Covered In This Video: Class 11 Political Science Chapter 4 Prime Mi...

    published: 21 Sep 2020
  • (V89) (Collective, Individual & Legal Responsibility of Ministers in India) M. Laxmikanth Polity

    Join this channel to get access to perks: https://www.youtube.com/channel/UCAZiVpzu6oHHLcBQixHH0yg/join Insta - https://www.instagram.com/hrsht.dwivedi Telegram Link - https://t.me/harshitdwivedivideos This is the 89th video of Indian Polity by M. Laxmikanth sixth edition. # Oath & Salary Of Ministers # Collective Responsibility OF Ministers # Individual Responsibility # No Legal Responsibility Watch the video for more details. #upscpolity #laxmikanthpolitybook #laxmikanthpolityvideos #mlaxmikanthconstitution Indian Polity by M. Laxmikanth Complete Analysis for all Competitive Exams Playlist - https://www.youtube.com/playlist?list=PL_K2YMR-A5WJ3KpnC6PSLN7f_BYw749xf NCERT Social and Political Life II Class VII Textbook of all Chapters - https://www.youtube.com/playlist?list=PL_K2YMR...

    published: 01 Oct 2020
  • Council Of Ministers In India | Powers | Appointment | Structure | Hindi

    In this video we have discussed about 1) Appointment 2) Responsibility 3) Composition 4) Role and Authority of Central council of ministers of India ************************************ If you're interested in Stock investing and trading following links are useful. ☑️Zerodha Demat A/C: https://youtu.be/HnLlC8BJuX0 ☑️Open Free Demat Angel Broking - https://youtu.be/o8355Z0iMKc ************************************ PLAYLISTS YOU MAY LIKE Finance/Stock Market: http://bit.ly/39mKBCn Political Science: http://bit.ly/3ap8yJn Business Models: http://bit.ly/2vzJ3X2 ************************************ Connect with us: - INSTA: https://www.instagram.com/Basic.Gyaan FACEBOOK: https://www.facebook.com/BasicGyaan.F TWITTER: https://twitter.com/BasicGyaan ************************************ Equip...

    published: 09 Jan 2021
  • What is Collective and Individual Responsibility of Ministers ? Indian Polity - THE RASHTRA - 44

    Since Indian polity is an unavoidable subject in the Civil Service Examination,marking maximum sure shot bubbles in maximum number of polity questions will definitely help you to crack CS Prelims.And here "The Rashtra" will be an additional Exam Booster for your dreams.stay tuned Join our telegram channel for holistic history preparation for all UPSC & STATE Exams:https://t.me/upschistorypatshalagallant Visit our websites to know more about our courses:https://gallantias.com/ Facebook link:https://www.facebook.com/Gallant-IAS-... Contact us via Email for free counselling: gallantias@gmail.com Watch our malayalam optional classes videos https://www.youtube.com/playlist?list=PLRvsRgUZn3Yq36xLc1SagsbK_HZ1rqDKV Watch our history optional videos https://www.youtube.com/playlist?list=PLRvsR...

    published: 24 Dec 2020
  • Roles of the PM and Cabinet - A-level Politics Revision Video - Study Rocket

    Try our interactive A-level Politics course today, for free. http://bit.ly/2kGYczy Making study time quality. #politics #alevel #edexcel #aqa #ocr #studyrocket

    published: 11 Oct 2017
  • I would like to recruit this student in the parliament 😂 - S. Jaishankar

    Subrahmanyam Jaishankar is an Indian diplomat who is serving as the Minister of External Affairs of the Government of India since 30 May 2019. He is a member of the Bharatiya Janata Party. He is a Member of Parliament in the Rajya Sabha since 5 July 2019, representing Gujarat. ________________________________________________________________________ Hey, Jaspal here I will keep uploading such short videos related to Life, Education, business, and sports. So my friends SUBSCRIBE to this channel and join me in the Journey to learn something new every day.✨ Let's Learn together 🤝 ▶ SUBSCRIBE NOW: @LearnwithJaspal let's connect on Instagram: https://www.instagram.com/learnwithjaspal/ Thank you ________________________________________________________________________ #shorts #sjaishankar...

    published: 28 Jul 2022
developed with YouTube
Collective Responsibility
2:03

Collective Responsibility

  • Order:
  • Duration: 2:03
  • Uploaded Date: 14 Feb 2017
  • views: 26719
This quick video explains the doctrine of Collective Responsibility of the Council of Ministers. (detailed discussion on the website) Website: http://www.lawtutor.in Facebook: https://www.facebook.com/lawtutorindia/
https://wn.com/Collective_Responsibility
Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COM
28:02

Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COM

  • Order:
  • Duration: 28:02
  • Uploaded Date: 01 Jul 2023
  • views: 61295
#parcham #parchamclasses #parchampolity ​Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COM This video has all the details about the Council of ministers, its relation with the President, Prime Minister and Parliament. Collective and Individual Responsibility, Kitchen Cabinet. These Polity lectures will be helpful to clear your basic concepts regarding topics. It will be beneficial in UPSC(CDS, EPFO, APFC, Assistant commandant), SSC, and Teaching Exams Indian Polity - By Payal Ma'am: https://www.youtube.com/playlist?list=PLJ0PDUtEYgazGVg-oaZCqfWq0rAt7CJY7 ******************** Sawaal – The CA Objective Quarterly e-Book (Annual Subscription) Has been launched!! App Subscription Link: https://klizz.courses.store/336566?utm_source%3Dother%26utm_medium%3Dtutor-course-referral%26utm_campaign%3Dcourse-overview-webapp Individual PDF of “Sawal - The CA Objective e-Book Quarter 1 (Jan - Mar’23)” available on - https://parchamclasses.in/current-affairs-2023/ ******* Yearbook PDF (Softcopy) format available in - English & Hindi Available on Parcham App & website - Website Link: parchamclasses.in/ca20 - English Link: https://klizz.courses.store/296941?utm_source%3Dother%26utm_medium%3Dtutor-course-referral%26utm_campaign%3Dcourse-overview-webapp - Hindi Link: https://klizz.courses.store/300394?utm_source%3Dother%26utm_medium%3Dtutor-course-referral%26utm_campaign%3Dcourse-overview-webapp ******* SSC Course - https://klizz.courses.store/147313?utm_source%3Dother%26utm_medium%3Dtutor-course-referral%26utm_campaign%3Dcourse-overview-webapp Parcham App Store Section: https://web.classplusapp.com/newApp/store/home?tabCategoryId=1 ******* App Link: https://play.google.com/store/apps/details?id=co.arya.klizz Parcham Store Link https://parchamstore.in/ Follow us on our social media for the latest updates. Download PDFs of notes from our website and get an Annual PDF subscription from Parcham App. Website:- https://parchamclasses.in Instagram:- https://instagram.com/parcham_classes?igshid=rkptkfm2h7o6 Telegram channel:- https://t.me/ParchamCompetitionClasses Twitter:- https://twitter.com/ParchamClasses?s=08 Facebook Page:- http://www.facebook.com/Parcham-Class...
https://wn.com/Council_Of_Ministers_|_Cabinet_Ministers_|_Collective_And_Individuals_Responsibility_Of_Com
Individual & Collective responsibility of Council Of Ministers| BENBYIAS
11:43

Individual & Collective responsibility of Council Of Ministers| BENBYIAS

  • Order:
  • Duration: 11:43
  • Uploaded Date: 22 Dec 2022
  • views: 222
SUBJECT- CONSTITUTIONAL & ADMINISTRATIVE LAW TOPIC- CONSTITUTIONAL POSITION OF THE PRESIDENT AND RELATION WITH THE COUNCIL OF MINISTERS Q. What is meant by ‘individual responsibility’ and ‘collective responsibility’ of the Council of Ministers? What would be the consequences of ‘individual responsibility’ in case a Minister of the Government is found guilty of tort of misfeasance by the Supreme Court of India? Comment. UPSC CSE Examination. One can easily fetch the 300+ score in his/her optional and can find place in the personality test stage of this exam. We also provide to the point exam strategy to help you crack this exam in one go not just in Law Optional but also in General Studies Courses and NCERT Mentorship program. BE N BY IAS is an IAS coaching institute established and run by former IAS Officer Mr. Jasbir Singh Bajaj. Best coaching for Prelims, Mains, GS, LAW as an optional subject. We have mentors who have succeeded in UPSC CSE exams, became IAS officers, and have served the nation. Experienced in terms of being a student as well as a bureaucrat. Seen both sides of Life. Important for students to see and learn from their experiences and how they studied during their exam times. we have 26 such members in our panel who are from different services. Best LAW optional center since Mr Jasbir Singh Bajaj has himself cleared his Civil Services Examination taking Law as an optional subject. Moreover, he himself teaches Law subjects. JOIN OUR CLASSES call us @ 9958826967 #upsc #lawoptional #previousyearquestions Visit Our Website:- www.beandbyias.com
https://wn.com/Individual_Collective_Responsibility_Of_Council_Of_Ministers|_Benbyias
What is 'Collective Responsibility'? Describe its significance.
1:47

What is 'Collective Responsibility'? Describe its significance.

  • Order:
  • Duration: 1:47
  • Uploaded Date: 27 Oct 2022
  • views: 6979
What is 'Collective Responsibility'? Describe its significance. 📲PW App Link - https://bit.ly/PW_APP 🌐PW Website - https://bit.ly/PW_APP 📌 PHYSICS WALLAH OTHER CHANNELS : 🌐 PhysicsWallah -Alakh Pandey: https://youtube.com/@PhysicsWallah 🌐 Alakh Pandey: https://youtube.com/@alakhpandey1414 🌐 JEE Wallah: https://youtube.com/@jee_wallah 🌐 Competition Wallah: https://youtube.com/@competitionwallah 🌐 PW Foundation: https://youtube.com/c/PhysicsWallahFoundation 🌐 NCERT Wallah : https://www.youtube.com/channel/UC8zCnnfhz-dvIpVdZ1CheuA 🌐 Defence Wallah-NDA: https://youtube.com/channel/UC8OCoGX9tmMneOzIFUTWq2Q 🌐 PhysicsWallah English: https://youtube.com/@EnglishPW 🌐 PW Vidyapeeth: https://youtube.com/@VidyapeethPW 🌐 Commerce Wallah by PW: https://youtube.com/@commercewallahpw 🌐 CA Wallah bt PW: https://www.youtube.com/channel/UC2amkJX5zDyQJ0mDajAWRSA 🌐 PW Sarkari Exam: https://youtube.com/@PWSarkariExams 🌐 PW - Hindi Medium: https://youtube.com/@physicswallahhindimedium 🌐 PW Bangla: https://youtube.com/@pwbangla 🌐 PW Maharashtra: https://youtube.com/@PWMaharashtra 🌐 PW Telugu: https://youtube.com/@PWTelugu 🌐 PW Kannada: https://youtube.com/@PWKannada 🌐 PW Gujarati: https://youtube.com/@PWGujarati 🌐 PW Facts: https://youtube.com/@pwfacts 🌐 PW Insiders: https://youtube.com/channel/UCHMWQFr9Nwo3wJsAap2Wnfw 🌐 PW Little Champs: https://youtube.com/@pwlittlechamps 🌐 PW Pathshala: https://youtube.com/channel/UCcXUY9NSMyYbkOvUD97CUmA 🌐 Banking Wallah : https://www.youtube.com/channel/UCg5_K50hLTKerLkSE7I1yWQ 🌐 SSC Wallah : https://www.youtube.com/channel/UCcaEVV7A47J4k9GFcqOOYkg 🌐 JEE Challengers by PW : https://www.youtube.com/channel/UCyf71tWV2abeN-l_UKiJ-5g 🌐 UPSC Wallah : https://www.youtube.com/channel/UCqOy6oOu6RPJNHYQ8f_Ybvg 🌐 UPSC Wallah हिन्दी : https://www.youtube.com/channel/UCmrP-DYdZuThp8AO9lnnwNw 🌐 GATE Wallah : https://www.youtube.com/channel/UC9PoSJoftLvEnXT-PtQ5Wtw 🌐 GATE Wallah - EC,EE & CS : https://www.youtube.com/channel/UCuGWIkiNaWjsCqybgxGuxfg 🌐 GATE Wallah - ME, CE & XE : https://www.youtube.com/channel/UCGrrw9x3_B_fItUIBMvqAUw 🌐 GATE English : https://www.youtube.com/channel/UCOsV75fSUr8gnMbhx-Qh3Lg 🌐 College Wallah : https://www.youtube.com/channel/UCDrf0V4fcBr5FlCtKwvpfwA 🌐 PW IIT JAM & CSIR NET : https://www.youtube.com/channel/UCuj28Zll58sztDqLiDhzgtQ 🌐 MBA Wallah : https://www.youtube.com/channel/UCWWEvCschv0T0rtou4VaKGw 🌐 Teaching Wallah : https://www.youtube.com/channel/UCUzqJZOkCejFoc5eqWWA9Eg 📌 PHYSICS WALLAH SOCIAL MEDIA PROFILES : 🌐 Telegram : https://t.me/pwjeewallah 🌐 Facebook : https://www.facebook.com/physicswallah 🌐 Instagram : https://www.instagram.com/pwjee_wallah/?hl=en 🌐 Twitter : https://twitter.com/physics__wallah 🌐 Linkedin : https://www.linkedin.com/company/78087354/admin/ 📌 For any queries or complaints Visit : https://bit.ly/PW_Queries
https://wn.com/What_Is_'Collective_Responsibility'_Describe_Its_Significance.
Class 11 Political Science Chapter 4 | Prime Minister and Council of Ministers-Executive
17:54

Class 11 Political Science Chapter 4 | Prime Minister and Council of Ministers-Executive

  • Order:
  • Duration: 17:54
  • Uploaded Date: 21 Sep 2020
  • views: 123242
✔️📚👉 Watch Full Free Course: https://www.magnetbrains.com ✔️📚👉 Get Any Class & Subject's Topic Video Here:- https://www.magnetbrains.com/get-topic-wise-video ✔️📚👉 Get All Subjects Playlists: ​https://www.pabbly.com/out/all-videos-playlist ✔️📚👉 Grab Notes by Expert Teachers Here: https://www.pabbly.com/out/magnet-brains ✔️📚👉 Place Your Queries For Books Here: https://www.magnetbrains.com/booklet ✔️📚👉 Get Books Prepared by Our Expert Teachers at Your Door Step: https://www.magnetbrains.com/book_purchase =============================================== ✅ In this video, ✔️ Class: 11th ✔️ Subject: Political Science ✔️ Chapter: Executive (Chapter 4) ✔️ Topic Name: Prime Minister and Council of Ministers - Executive ✔️ Topics Covered In This Video: Class 11 Political Science Chapter 4 Prime Minister and Council of Ministers - Executive 👉 Previous Video: https://www.youtube.com/watch?v=wTVcCs_hM8A 👉 Next Video: https://www.youtube.com/watch?v=An2uq80_CrQ =============================================== 📢 🔥 Available (Kindergarten to 12th) all Video Subject wise Playlist https://www.pabbly.com/out/all-videos-playlist Why study from Magnet Brains? Magnet Brains is an online education platform that helps give You NCERT/CBSE curriculum based free full courses from Kindergarten to Class 12th so that you can perform well in any and all exams you give in your academic career. 👉 Contact us 🤑🤑 ➡️ Connect with us : magnetbrainsbhopal@gmail.com ➡️ Website : https://www.magnetbrains.com ➡️ Subscribe to us on YouTube: https://www.youtube.com/channel/UC3HS6gQ79jjn4xHxogw0HiA?sub_confirmation=1 ➡️ Subscribe to Magnet Brains Hindi Medium : https://www.youtube.com/channel/UCwO6AYOIRYgyP1KJ5aPbDlw?sub_confirmation=1 ➡️ Facebook : https://www.facebook.com/Magnet-Brains-Education-110955641184512 ➡️ Instagram : https://www.instagram.com/magnetbrains/ ➡️ Telegram : https://t.me/magnetbrainsbhopal #cbseexam #class11ncert #magnetbrains . Disclaimer: "This video is for educational and informational purposes only and is not intended to infringe on any copyrights. If you believe that this video has used any copyrighted material in a way that constitutes copyright infringement, please contact us at contact@magnetbrains.com and we will take appropriate action."
https://wn.com/Class_11_Political_Science_Chapter_4_|_Prime_Minister_And_Council_Of_Ministers_Executive
(V89) (Collective, Individual & Legal Responsibility of Ministers in India) M. Laxmikanth Polity
22:57

(V89) (Collective, Individual & Legal Responsibility of Ministers in India) M. Laxmikanth Polity

  • Order:
  • Duration: 22:57
  • Uploaded Date: 01 Oct 2020
  • views: 116671
Join this channel to get access to perks: https://www.youtube.com/channel/UCAZiVpzu6oHHLcBQixHH0yg/join Insta - https://www.instagram.com/hrsht.dwivedi Telegram Link - https://t.me/harshitdwivedivideos This is the 89th video of Indian Polity by M. Laxmikanth sixth edition. # Oath & Salary Of Ministers # Collective Responsibility OF Ministers # Individual Responsibility # No Legal Responsibility Watch the video for more details. #upscpolity #laxmikanthpolitybook #laxmikanthpolityvideos #mlaxmikanthconstitution Indian Polity by M. Laxmikanth Complete Analysis for all Competitive Exams Playlist - https://www.youtube.com/playlist?list=PL_K2YMR-A5WJ3KpnC6PSLN7f_BYw749xf NCERT Social and Political Life II Class VII Textbook of all Chapters - https://www.youtube.com/playlist?list=PL_K2YMR-A5WKqR09tn7B2N5iYXPycUewJ NCERT GEOGRAPHY Class VII Textbook Videos of all Chapters - https://www.youtube.com/playlist?list=PL_K2YMR-A5WJ0pUogoF2gWfJGbQ3RcUbw NCERT SCIENCE Class VII Textbook Videos of all Chapters - https://www.youtube.com/playlist?list=PL_K2YMR-A5WIaJAyi73xFlSL5D5Axms_Y NCERT Geography Class VI The Earth:Our Habitat Textbook Videos of all Chapters - https://www.youtube.com/playlist?list=PL_K2YMR-A5WK32uApeRAlP1JQr3OFww4q NCERT History Class VI Our Pasts I Textbook Videos of all Chapters - https://www.youtube.com/watch?v=6eviqklO55Y&list=PL_K2YMR-A5WL9y76vd5mqQicOmPSf0ZzE NCERT SCIENCE CLASS 6 Textbook Videos of all Chapters - https://www.youtube.com/watch?v=977-L0_PRwk&list=PL_K2YMR-A5WKNe9Dy5Adm8Eo9P__KtBQo The environment and ecology videos can be found at https://www.youtube.com/playlist?list=PL_K2YMR-A5WK2mrG6kdfdvdP-n7_MTzVU International Organizations Playlist - https://www.youtube.com/playlist?list=PL_K2YMR-A5WI9gB7qO1BM5XgcIFJj1lNk Economy Lectures - https://www.youtube.com/playlist?list=PL_K2YMR-A5WJ7S243E9stwzRwUgEpDS6G Geography videos please refer to our playlist - https://www.youtube.com/playlist?list=PL_K2YMR-A5WLzwkDDBeM8FjoP5yFQREZ5 Medieval History videos can be found at - https://www.youtube.com/watch?v=eEbJQT_ozsc&list=PL_K2YMR-A5WJiniPMczUVULfrSS7cH-Jf Indian Polity & Constitution Previous Years Solved Questions - https://www.youtube.com/playlist?list=PL_K2YMR-A5WLJDyt9x7Mkbzn8x-vSWDiw Indian Ancient History Playlist - https://www.youtube.com/playlist?list=PL_K2YMR-A5WJ8QjTs8KfaVsZJw1mGU6tB Rivers of India - https://www.youtube.com/playlist?list=PL_K2YMR-A5WJOCz9vQhqvAuvi2A-AhWvI Inspiring Biographies Playlist - https://www.youtube.com/playlist?list=PL_K2YMR-A5WLcLvV2rBRBCH8DFV9zwh-a Indian Polity and Constitution - https://www.youtube.com/playlist?list=PL_K2YMR-A5WKg0BuWXI-GCv7pBYbOE7nw Modern History - https://www.youtube.com/playlist?list=PL_K2YMR-A5WL9r800TcZBNnohv--U7Se0
https://wn.com/(V89)_(Collective,_Individual_Legal_Responsibility_Of_Ministers_In_India)_M._Laxmikanth_Polity
Council Of Ministers In India | Powers | Appointment | Structure | Hindi
9:07

Council Of Ministers In India | Powers | Appointment | Structure | Hindi

  • Order:
  • Duration: 9:07
  • Uploaded Date: 09 Jan 2021
  • views: 264128
In this video we have discussed about 1) Appointment 2) Responsibility 3) Composition 4) Role and Authority of Central council of ministers of India ************************************ If you're interested in Stock investing and trading following links are useful. ☑️Zerodha Demat A/C: https://youtu.be/HnLlC8BJuX0 ☑️Open Free Demat Angel Broking - https://youtu.be/o8355Z0iMKc ************************************ PLAYLISTS YOU MAY LIKE Finance/Stock Market: http://bit.ly/39mKBCn Political Science: http://bit.ly/3ap8yJn Business Models: http://bit.ly/2vzJ3X2 ************************************ Connect with us: - INSTA: https://www.instagram.com/Basic.Gyaan FACEBOOK: https://www.facebook.com/BasicGyaan.F TWITTER: https://twitter.com/BasicGyaan ************************************ Equipment i use: - Laptop: https://amzn.to/32QaSX6 Microphone: http://amzn.to/2xBYjBO ************************************ About: Hi Team Basic Gyaan is here to share important and interesting knowledge related to Finance, Political science and Trending topics in an easy to understand manner. For Business Inquiries Email: ContactBgyaan@gmail.com
https://wn.com/Council_Of_Ministers_In_India_|_Powers_|_Appointment_|_Structure_|_Hindi
What is Collective and Individual Responsibility of Ministers ? Indian Polity - THE RASHTRA - 44
3:11

What is Collective and Individual Responsibility of Ministers ? Indian Polity - THE RASHTRA - 44

  • Order:
  • Duration: 3:11
  • Uploaded Date: 24 Dec 2020
  • views: 7325
Since Indian polity is an unavoidable subject in the Civil Service Examination,marking maximum sure shot bubbles in maximum number of polity questions will definitely help you to crack CS Prelims.And here "The Rashtra" will be an additional Exam Booster for your dreams.stay tuned Join our telegram channel for holistic history preparation for all UPSC & STATE Exams:https://t.me/upschistorypatshalagallant Visit our websites to know more about our courses:https://gallantias.com/ Facebook link:https://www.facebook.com/Gallant-IAS-... Contact us via Email for free counselling: gallantias@gmail.com Watch our malayalam optional classes videos https://www.youtube.com/playlist?list=PLRvsRgUZn3Yq36xLc1SagsbK_HZ1rqDKV Watch our history optional videos https://www.youtube.com/playlist?list=PLRvsRgUZn3Yqgggw5NbeWbPRnUYtz3tfi Watch our Botany Optional videos https://www.youtube.com/playlist?list=PLRvsRgUZn3YpltAzYr3ns6cS2sI92RWNe
https://wn.com/What_Is_Collective_And_Individual_Responsibility_Of_Ministers_Indian_Polity_The_Rashtra_44
Roles of the PM and Cabinet - A-level Politics Revision Video - Study Rocket
3:20

Roles of the PM and Cabinet - A-level Politics Revision Video - Study Rocket

  • Order:
  • Duration: 3:20
  • Uploaded Date: 11 Oct 2017
  • views: 46471
Try our interactive A-level Politics course today, for free. http://bit.ly/2kGYczy Making study time quality. #politics #alevel #edexcel #aqa #ocr #studyrocket
https://wn.com/Roles_Of_The_Pm_And_Cabinet_A_Level_Politics_Revision_Video_Study_Rocket
I would like to recruit this student in the parliament 😂 - S. Jaishankar
0:59

I would like to recruit this student in the parliament 😂 - S. Jaishankar

  • Order:
  • Duration: 0:59
  • Uploaded Date: 28 Jul 2022
  • views: 22205862
Subrahmanyam Jaishankar is an Indian diplomat who is serving as the Minister of External Affairs of the Government of India since 30 May 2019. He is a member of the Bharatiya Janata Party. He is a Member of Parliament in the Rajya Sabha since 5 July 2019, representing Gujarat. ________________________________________________________________________ Hey, Jaspal here I will keep uploading such short videos related to Life, Education, business, and sports. So my friends SUBSCRIBE to this channel and join me in the Journey to learn something new every day.✨ Let's Learn together 🤝 ▶ SUBSCRIBE NOW: @LearnwithJaspal let's connect on Instagram: https://www.instagram.com/learnwithjaspal/ Thank you ________________________________________________________________________ #shorts #sjaishankar #india # parliament #iimahemdabad #iit #iim #sigma #diplomacy #skill #diplomacy #diplomat #china #usa #russia #gulf #oil # #education #study #motivation #speech #google #india #entrepreneurship #engineering #startup #buisness #startups #inspiration #life #learnwithjaspal ________________________________________________________________________ This content doesn’t belong to me, it is edited and shared only for awareness, and if the content OWNER (visual/audio) of this content has any issue, we request you to directly message me, thus we sort out the outcome.⁣⁣⁣⁣⁣⁣⁣⁣⁣⁣ Regards,⁣⁣⁣⁣⁣⁣⁣⁣⁣ Jaspal
https://wn.com/I_Would_Like_To_Recruit_This_Student_In_The_Parliament_😂_S._Jaishankar
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Collective Responsibility
    2:03
    Collective Responsibilityremove from playlist
  • Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COM
    28:02
    Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COMremove from playlist
  • Individual & Collective responsibility of Council Of Ministers| BENBYIAS
    11:43
    Individual & Collective responsibility of Council Of Ministers| BENBYIASremove from playlist
  • What is 'Collective Responsibility'? Describe its significance.
    1:47
    What is 'Collective Responsibility'? Describe its significance.remove from playlist
  • Class 11 Political Science Chapter 4 | Prime Minister and Council of Ministers-Executive
    17:54
    Class 11 Political Science Chapter 4 | Prime Minister and Council of Ministers-Executiveremove from playlist
  • (V89) (Collective, Individual & Legal Responsibility of Ministers in India) M. Laxmikanth Polity
    22:57
    (V89) (Collective, Individual & Legal Responsibility of Ministers in India) M. Laxmikanth Polityremove from playlist
  • Council Of Ministers In India | Powers | Appointment | Structure | Hindi
    9:07
    Council Of Ministers In India | Powers | Appointment | Structure | Hindiremove from playlist
  • What is Collective and Individual Responsibility of Ministers ? Indian Polity - THE RASHTRA - 44
    3:11
    What is Collective and Individual Responsibility of Ministers ? Indian Polity - THE RASHTRA - 44remove from playlist
  • Roles of the PM and Cabinet - A-level Politics Revision Video - Study Rocket
    3:20
    Roles of the PM and Cabinet - A-level Politics Revision Video - Study Rocketremove from playlist
  • I would like to recruit this student in the parliament 😂 - S. Jaishankar
    0:59
    I would like to recruit this student in the parliament 😂 - S. Jaishankarremove from playlist
developed with YouTube
PLAYLIST TIME:

Collective Responsibility

This quick video explains the doctrine of Collective Responsibility of the Council of Ministers. (detailed discussion on the website) Website: http://www.lawtutor.in Facebook: https://www.facebook.com/lawtutorindia/
2:03
Collective Responsibility
This quick video explains the doctrine of Collective Responsibility of the Council of Mini...
published: 14 Feb 2017
Play in Full Screen
28:02
Council of ministers | Cabinet ministers | Collective and individuals Responsibility of COM
#parcham #parchamclasses #parchampolity ​Council of ministers | Cabinet ministers | Collec...
published: 01 Jul 2023
Play in Full Screen
11:43
Individual & Collective responsibility of Council Of Ministers| BENBYIAS
SUBJECT- CONSTITUTIONAL & ADMINISTRATIVE LAW TOPIC- CONSTITUTIONAL POSITION OF THE PRESIDE...
published: 22 Dec 2022
Play in Full Screen
1:47
What is 'Collective Responsibility'? Describe its significance.
What is 'Collective Responsibility'? Describe its significance. 📲PW App Link - https://bi...
published: 27 Oct 2022
Play in Full Screen
17:54
Class 11 Political Science Chapter 4 | Prime Minister and Council of Ministers-Executive
✔️📚👉 Watch Full Free Course: https://www.magnetbrains.com ✔️📚👉 Get Any Class & Subject's T...
published: 21 Sep 2020
Play in Full Screen
22:57
(V89) (Collective, Individual & Legal Responsibility of Ministers in India) M. Laxmikanth Polity
Join this channel to get access to perks: https://www.youtube.com/channel/UCAZiVpzu6oHHLcB...
published: 01 Oct 2020
Play in Full Screen
9:07
Council Of Ministers In India | Powers | Appointment | Structure | Hindi
In this video we have discussed about 1) Appointment 2) Responsibility 3) Composition 4) ...
published: 09 Jan 2021
Play in Full Screen
3:11
What is Collective and Individual Responsibility of Ministers ? Indian Polity - THE RASHTRA - 44
Since Indian polity is an unavoidable subject in the Civil Service Examination,marking ma...
published: 24 Dec 2020
Play in Full Screen
3:20
Roles of the PM and Cabinet - A-level Politics Revision Video - Study Rocket
Try our interactive A-level Politics course today, for free. http://bit.ly/2kGYczy Making...
published: 11 Oct 2017
Play in Full Screen
0:59
I would like to recruit this student in the parliament 😂 - S. Jaishankar
Subrahmanyam Jaishankar is an Indian diplomat who is serving as the Minister of External A...
published: 28 Jul 2022
Play in Full Screen

Ministry (collective executive)

A ministry (usually preceded by the definite article, i.e., the ministry) refers to a collective body of government ministers headed by a prime minister or premier. It is described by the Oxford Dictionary as "a period of government under one prime minister”. Although the term "cabinet" can in some circumstances be a synonym, a ministry can be a broader concept which might include office-holders that do not participate in cabinet meetings. Other titles can include "administration" (in the United States) or "government" (in common usage among most parliamentary systems) to describe similar collectives.

The term is primarily used to describe the successive governments of the United Kingdom, Canada, Australia and New Zealand, which share a common parliamentary political heritage. In the United Kingdom, Australia and New Zealand, a new ministry begins after each election, regardless of whether the prime minister remains the same. For example, after winning the 1979 general election, Margaret Thatcher, as prime minister of the United Kingdom, began the First Thatcher ministry. After winning the 1983 general election, she began the Second Thatcher ministry, and so on. In Canada, a new ministry is only formed if the government loses an election.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
  • 1

Most Viewed

×