Earlier I was very weak in OS concepts, after watching your series I can say with utmost confidence that I am super confident in OS. Thanks for making our lives easy. Loved this series.
@kunwardeepsingh33538 күн бұрын
best channel for computer science student if you are a fresher and reading this believe me i yhave done DSA from this channel and mazaa aa gya now doing OS and pehli baar OS samajh aa rha hai. If u are from CSE this channel is GOD.
@shivanshvish4879 Жыл бұрын
I have binged watch this series successfully with no interruption. It was I can say the most practical and knowledgeable series in OS. This is how our education system should look like
@rohitantil95342 жыл бұрын
This OS series is very amazing ❤️ thank you lakshay bhai❤️❤️
@climpZ_7k73 ай бұрын
one month of absorbing this playlist easily beats an entire semester of OS , both in comfort and depth , finally done with this playlist. thanks a lot for doing this✌ P.S we desperately need something like this for computer networks now
@devendrasuthar55302 жыл бұрын
Bhaiya your OS series was really amazing as DB I have watched both series and I am from mechanical background. waiting for you next series on computer networks.
@ayushraj65252 жыл бұрын
Lru cache implement kar liya bhaiya. Implemented it using orderedDict in python.. Maza aagya 😃
@mdsumama99302 жыл бұрын
Best Underrated operating system course
@smanivesh2 жыл бұрын
Os k baad ab DBMS start krna please🙏
@VIJAYKUMAR-dj6kf2 жыл бұрын
honestly, it's an awesome course, followed it so far and would suggest to those checking comments for how the course actually is, thank you bhaiya
@vibhavtripathi5226 Жыл бұрын
Awsm. twist when the best technique is not possible! Note: - This comment is with refernce to the Optimal Page Replaccement Algorithm.
@aarinsheik15834 ай бұрын
34:00 , queue would have been a better solution than stack , any thoughts ?
@___divykant___ Жыл бұрын
very grateful to babbar bhaiya , such a nice course , legit attended all the videos of this course which made my confidence so highhh
@0708Sunshine2 жыл бұрын
Thank you so much for all the effort, it is Highly appreciated :)
@radagon69192 жыл бұрын
jod course, liked it very much😀😀😀
@dhairyataneja32112 жыл бұрын
Bhaiya ek computer networks for placements pe bhi bna do...
@vijaydas4202 жыл бұрын
I never heard that they ask about CNF in interviews, do they?
@shoyaishida3605 Жыл бұрын
they do
@webseries4u335 Жыл бұрын
Sir i watched full playlist and help of this video i passed the college exam with nice grade thank you sir and in my 2nd sem I'll watch full dbms playlist ☺️🙂
@jaydwarkadhish9592 жыл бұрын
Sir amazing video very nice 😇😇😇😊😊
@shivammishra68092 жыл бұрын
Best playlist Hope next on Computer Network.
@anishborse19242 жыл бұрын
Great efforts, I appreciate your efforts.
@saurabhbisht92802 жыл бұрын
we can use set pair to implement counter .In which first will be the counter and second is value
@mayankmaloo6893 Жыл бұрын
we can also implement it by using circular array concept . In the above example as discussed in lecture keep a array of size 3 after each time will update i to (i+1)%3 .
@HARSHSharma-yf9og Жыл бұрын
I mean certain pages would have a valid/invalid bit as 1 since the ram has the capacity to hold three pages according to the said situation.Hence if the pages are present in RAM than the page fault would occur. ONLY in the scenario where all the demanded pages are new that 15 page faults can occur.
@pravinlife5699 Жыл бұрын
Thanks bhaiya for this awesome series
@gauravsinha303211 ай бұрын
Please make video on computer network
@ayushianderiya396 Жыл бұрын
What a playlist sir really greatttttt🙌🙌🙌
@LuckyRathod20 Жыл бұрын
Amazing..... Thank you bhaiya
@medhakhatri28402 жыл бұрын
Thankyou sir! very useful series
@motivation_with_harsh2 жыл бұрын
thankyou so much sir for your efforts i highly appreciate your hardwork
@shindeprem2285 ай бұрын
LRU ka counter wale approach ko implement krne ke liye hashmap use krna hai kya
@reisewithNeelam2 жыл бұрын
Valuable series . Thankyou...
@siddhantsingh2937 Жыл бұрын
How will you remove pages from the end of the stack in case of LRU
@ankushladani4962 жыл бұрын
Maja aa gaya bhai....
@srajittanwar6362 жыл бұрын
Was waiting for it🔥
@soumiksarkar2119 Жыл бұрын
Why cant we use a queue instead of stack in LRU?
@UECAshutoshKumar4 ай бұрын
Thank you 😊
@CodeWithBro Жыл бұрын
completed whole playlist in one day, exam time killls now going to sleep
@prajjawalsingh49524 ай бұрын
class Node { public: int a, b; Node *pre; Node *next; Node() { pre = NULL; next = NULL; a = -1; b = -1; } }; class LRUCache { public: map mp; Node *head = new Node(); Node *tail = new Node(); int cap; LRUCache(int capi) { this->cap = capi; head->next = tail; tail->pre = head; mp.clear(); } void add(Node *a) { a->pre = head; Node *rt = head->next; a->next = rt; head->next = a; rt->pre = a; } void deletenode(Node *a) { Node *pr = a->pre; Node *nx = a->next; pr->next = nx; nx->pre = pr; } void put(int a, int b) { if (mp.find(a) != mp.end()) { deletenode(mp[a]); add(mp[a]); mp[a]->b=b; return ; } if (mp.size() == cap) { mp.erase(tail->pre->a); deletenode(tail->pre); } Node* p=new Node(); p->a=a; p->b=b; add(p); mp[a]=p; return ; } int get(int a) { if (mp.find(a) == mp.end()) return -1; deletenode(mp[a]); add(mp[a]); return mp[a]->b; } }; LRU CATCHE iMPLEMENTATION
@aka_akaran2 жыл бұрын
Nice Efforts in the series. By far one of the best.
@ayushgupta8538 Жыл бұрын
Thanks for this amazing lecture
@Ankit.yt_8852 жыл бұрын
Amazing series!
@MrCoder-q1y Жыл бұрын
can we implement the lru with mean heap with custom ??
@chandrachurmukherjeejucse5816 Жыл бұрын
Implemented LRU Cache 👍🏻
@harshalwaghmare4402 жыл бұрын
Awsome Series Lakshay Sir
@chaitanyasawant7762 жыл бұрын
Mai abhi mobile par video dekh raha hun, time abhi 22:16 hai video mai, from start till this point I'm only seeing "In Japan" picture on the screen. Is this happening only with me?
@EAREC_SAWAN_KUMAR_CHOUHAN2 жыл бұрын
Bhaiya maza aa gaya
@KACodes2 жыл бұрын
Starting me motivation kam thi kyuki subjective topic hai to neend aati thi... But ab importance samajh aa rahi hai OS ki to ab value pata chali hai is course ki
I think there are less page faults than 15 in FIFO.
@kumarpawansahh2 жыл бұрын
awesome
@ShivamKumar-yn9wb Жыл бұрын
this series doesnt has system calls.please add
@parthrastogi572 Жыл бұрын
Hai
@AbhishekKumar-dl6ko6 ай бұрын
Day 29 done ...10/06/24
@shivgupta92402 жыл бұрын
Very nice
@bhaskarmishra84792 жыл бұрын
How is LRU different from FIFO?
@AnmolSingh-rf3zt2 жыл бұрын
FIFO is about entry of the earliest page. LRU is about earliest usage of a page due to which it is pushed to the stack top even when it is already present in the frames.
@KratosProton2 жыл бұрын
great
@SumitKumarSK2 жыл бұрын
ye java development mei kaam aayega?
@alexrcrew19752 жыл бұрын
no
@PradeepKumar-kd1dm Жыл бұрын
bhai maza aya khatam krke ye playlist
@063himanshumishra42 жыл бұрын
Bhaiya moj kr diii
@himansuranjanpatra49402 жыл бұрын
Sir make next class on computer architecture & Organization 🙏🙏🙏🙏
@dibyadutta45252 жыл бұрын
bhaiiii ... 😐😐😐😐😣😣😣😣😣
@alexrcrew19752 жыл бұрын
@@dibyadutta4525 ok
@unknowncenter78222 жыл бұрын
🔥🔥🔥
@tntextreme19652 жыл бұрын
Day 29 done✓
@SURAJKUMAR-bv8vp2 жыл бұрын
Sir start dbms asap plz
@mdghufranalam73692 жыл бұрын
🙏😍
@Aditya-rs5dj2 жыл бұрын
Implemented
@harshmehta12822 жыл бұрын
In a way we can say that (iv) Counters method is a Doglapan 😂