DPP: Scheduling Algorithms | L 10 | Operating System | GATE 2022

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ต.ค. 2024
  • The Great Learning Festival is here!
    Get an Unacademy Subscription of 7 Days for FREE!
    Enroll Now - unacademy.com/...
    .. In this live lecture, you will prepare the #OperatingSystem for GATE CSE/IT 2022 Exam. #VishvadeepGothi Sir has covered the #DPP_SchedulingAlgorithms from the operating system in this video. So here Sir will give you a lot of tips and tricks to crack the #GATEExam
    Start on 26 May:
    Evolve for GATE 2022 (CS & IT) - Batch O
    unacademy.com/...
    Next 🏆 Combat Date: 30th May
    Time: 11 am
    Link: unacademy.onel...
    🙏 Welcome to Unacademy Computer Science Channel, your one-stop solution for all GATE Exams 💯India’s Top Educators will be teaching you daily on this channel. We will cover the entire syllabus, strategy, updates, and notifications which will help you to crack the GATE exams 🎯
    During the live session, our Educators will be sharing a lot of Tips and Tricks to crack the exam. GATE aspirants who are preparing for their Exams will be benefited from this channel. Unacademy platform has the Best Educators from all over the country, who take live classes every day ✔️
    Vishavdeep Gothi and other Top Educators take classes on Unacademy App.
    Use Special Code “VDEEP10” to get 10% off on your Unacademy Subscription 😍
    👉🏼 Subscribe today: unacademy.onel...
    👉🏼 Special Class Link: unacademy.onel...
    👉🏼 Vishavdeep Gothi’s Unacademy Profile Link: unacademy.onel...
    🏆 Unacademy Combat Link: unacademy.onel...
    📝 Playlist Link: • Operating System | GAT...
    Do Subscribe and be a part of the community for more such lessons here:
    👉🏼 Join the Telegram: t.me/Unacademy...
    👉🏼 Subscribe to our channel: bit.ly/2PTRRxk
    ✏️ Unacademy Studios Feedback Form: bit.ly/GATEESE10
    Download the Unacademy Learning App here:
    👉🏼 Android: unacademy.onel...
    👉🏼 iOS: unacademy.onel...
    Unacademy Subscription Benefits:
    1. Learn from your favourite Educator
    2. Dedicated DOUBT sessions
    3. One Subscription, Unlimited Access
    4. Real time interaction with Educators
    5. You can ask doubts in live class
    6. Limited students
    7. Download the videos & watch offline
    Get the GATE & ESE Iconic Advantage:
    1. Personal Coach
    2. Study Planner & Bi-weekly Reviews
    3. Dedicated Doubt Clearing Space
    4. Personalized Test Analysis
    5. Study Booster Sessions
    6. Preparatory Study Material
    7. All the Unacademy Subscription Benefits

ความคิดเห็น • 19

  • @umang1226
    @umang1226 3 ปีที่แล้ว +9

    sir we need educator like you ..

  • @PENJENDRUVARUN-uy2ov
    @PENJENDRUVARUN-uy2ov 2 หลายเดือนก่อน +2

    00:00 The video discusses the importance of scheduling algorithms and the value of time in problem-solving.
    03:36 Utilize your time for professional life and exam preparation.
    06:11 Introduction to Scheduling Algorithms
    10:11 Understanding how to calculate waiting time for different processes in scheduling algorithms
    14:40 Discussion on Waiting Time in Scheduling Algorithms
    18:44 Understanding scheduling algorithms in operating systems
    22:40 Discussing scheduling algorithms and processes in operating systems.
    27:10 Explanation of scheduling algorithms in operating systems
    30:51 Late-arriving processes affect the execution order in the operating system.
    34:24 Understanding CPU Utilization and Scheduling in Operating Systems
    38:02 Explanation of waiting time fractions in scheduling algorithms
    41:56 Utilize quality preparation time efficiently

  • @saurabhtiwari287
    @saurabhtiwari287 3 ปีที่แล้ว +6

    Best ever lecture

  • @prasadpathak3658
    @prasadpathak3658 ปีที่แล้ว +5

    @8:55 what does time 0+ means?

  • @shahbros1498
    @shahbros1498 2 ปีที่แล้ว +1

    Nice way of reaching.

  • @MobilePanda
    @MobilePanda 3 ปีที่แล้ว +3

    What will be the context switches in the first question ? Please answer

  • @akshaykushwaha7003
    @akshaykushwaha7003 3 ปีที่แล้ว +23

    Start 7:15

  • @sachingaikwad9288
    @sachingaikwad9288 2 ปีที่แล้ว +2

    In Round Robbin Scheduling Algorithm
    lets consider if a process is executing and now its preempted and the next process for execution is the same process in this case will we consider the context switch or not ?
    eg. | p1 | p3 | p4 | p2 | p2 | p5 |
    how many context switch in this case ?
    5 or 4 ?

    • @ayushpratapsingh2540
      @ayushpratapsingh2540 2 ปีที่แล้ว

      I think 4 as context switch is not happening

    • @SoloScholar0202
      @SoloScholar0202 2 ปีที่แล้ว

      4 of course since p2 is running continuously, it won't come under the context switch.

    • @rahulray7421
      @rahulray7421 2 หลายเดือนก่อน

      Right answer is 4 because PCB of the process p2 switch only one time and it execute two times cause of RR.

    • @wigglesort
      @wigglesort 18 วันที่ผ่านมา

      5. sir told in the video

  • @sumitrajsingh938
    @sumitrajsingh938 3 ปีที่แล้ว +1

    Sir poore syllaabus ka video daaliye

  • @dsadaddy8403
    @dsadaddy8403 2 หลายเดือนก่อน

    how come the fractions are multiplied to get p^n

    • @gayathribijivemula
      @gayathribijivemula หลายเดือนก่อน +1

      Cpu waiting time for 1 process -p
      For 2 process-p*p
      For 3 process-p*p*p
      For n process-p*n

    • @darkrider3070
      @darkrider3070 หลายเดือนก่อน +1

      In short - Using PnC
      Detailed - Each process needs to wait for time p before execution and in all there are N processes. Also each process needs to be executed one by one separately(we cannot move on to the next process before completion of the current), so Applying Fundamental Principle of Counting(for Multiplication) of PnC we reach the conclusion :
      p * p * p * p * ........... n times = p^n.