Lec-52: Design PDA for {w | na(w) = nb(w)} CFL language | Pushdown automata | TOC

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 271

  • @sagarm17
    @sagarm17 Рік тому +30

    Varun Sir are next level(totally different from other teachers) Computer Science Professor/Teacher in India ❤🎉😊.
    I can say that Varun Sir are the God given gift to all CS/IT Students to gain lot of Technical Knowledge. 😊
    Be healthy sir ❤

  • @ugcnet8015
    @ugcnet8015 2 роки тому +25

    Sir, you deserve "Best Teacher Of The Year" award this time.

  • @gunjanchoudhary4632
    @gunjanchoudhary4632 4 роки тому +16

    You are too good sir. I am preparing for UGC-NET 2020 and your videos are really helpful.

    • @zenitsu4139
      @zenitsu4139 Рік тому

      clear hua ?

    • @gunjanchoudhary4632
      @gunjanchoudhary4632 Рік тому +1

      Yes

    • @zenitsu4139
      @zenitsu4139 Рік тому

      @@gunjanchoudhary4632 konsa college ma ha?

    • @somyachouhan7108
      @somyachouhan7108 Рік тому

      ​@@gunjanchoudhary4632wow thodisi light dedo kitna padha, kitni der padha, kaha se padha, kaise padha, aur aap abhi kaha ho I mean kis field mai aur kya kr rhe ho

    • @gunjanchoudhary4632
      @gunjanchoudhary4632 Рік тому

      @@somyachouhan7108 gate smashers and knowledge gate se padha mene, clear kr liya, paper 1 ke liye alg alg site h but usme b ache marks mil gaye the, currently government job h Rajasthan state me

  • @jashandeep5165
    @jashandeep5165 19 днів тому

    Sir are next level(totally different from other teachers) Computer Science Professor/Teacher in India ❤🎉😊.
    I can say that Varun Sir are the God given gift to all CS/IT Students to gain lot of Technical Knowledge. 😊
    Be healthy s

  • @biplobmanna
    @biplobmanna Рік тому +60

    The final transition rules should be somewhat like this:
    Let, q0 be the "initial" & q1 be the "final" state.
    (q0, 0, z0) -> (q0, 0.z0)
    (q0, 0, 0) -> (q0, 0.0)
    (q0, 1, 0) -> (q0, Ɛ)
    (q0, 1, z0) -> (q0, 1.z0)
    (q0, 1, 1) -> (q0, 1.1)
    (q0, 0, 1) -> (q0, Ɛ)
    (q0, Ɛ, z0) -> (q1, z0)

    • @tanujgupta8576
      @tanujgupta8576 5 місяців тому +1

      Bhai yaha pe state change nhi hogi kya kyuki hm 0 se 1 p gye?

    • @Quester2023-xp7rb
      @Quester2023-xp7rb 20 днів тому

      yes at last epsilon,z0 / z0 output is z0 itself sir wrote epsilon i.e epsilon , z0 /epsilon

  • @richasalan4870
    @richasalan4870 3 роки тому +65

    Sir why states does not change when we take 1 as a input ??? In other videos we change our states also when we change input ...

  • @teksomegeek2062
    @teksomegeek2062 4 роки тому +112

    Sir, I think that there will be 3 more transitions, one for when 1 enters and the stack is empty i.e. (1,z/1,z), one for when 0 comes after 1 and pops the 1 in stack i.e. (0,1/epsilon) and one when 1 comes after 1 which is in the stack i.e. (1,1/11).

    • @csesubjectwise6574
      @csesubjectwise6574 4 роки тому +1

      ua-cam.com/play/PLyeuwglfy-Cuz4I6-_8PA6HPQ0weFmFgC.html

    • @csesubjectwise6574
      @csesubjectwise6574 4 роки тому +3

      Clear your doubts here

    • @atulkrishnan4673
      @atulkrishnan4673 4 роки тому +3

      yeah in total 5 states (2 final states)

    • @mdme2891
      @mdme2891 3 роки тому +2

      @@csesubjectwise6574 thank u sir u r vdo cleared my doubt

    • @mdme2891
      @mdme2891 3 роки тому

      ua-cam.com/video/-afJACAH9Bs/v-deo.html this vdo will clear the doubt of y to change state and when

  • @sidrakanwal8151
    @sidrakanwal8151 2 роки тому +1

    Happy teachers dayy ..only just because of u me and my friends a able to pass ourr examm..

  • @TheAsimjan
    @TheAsimjan 4 роки тому +3

    Well explained... Your tutorials are always awesome... Love from Pakistan ❤️

  • @animationcrust1993
    @animationcrust1993 4 роки тому +3

    Haven't seen sir like big bro yet 🙌🙌
    Great sir ❤️😊

  • @rvr61
    @rvr61 4 роки тому +146

    Sir, I think, if we take a language which starts with 1 e.g. 1001, then in this case your PDA cannot POP the first 1 as initially z0 was in the stack.

    • @jacksonsunny1261
      @jacksonsunny1261 4 роки тому +5

      Exactly

    • @atulkrishnan4673
      @atulkrishnan4673 4 роки тому +7

      yeah but using his logic we can complete the solution...final solution will have 5 states( 2 final states).

    • @ashwiniyer454
      @ashwiniyer454 4 роки тому +47

      Actually in such a case, you can change your stack alphabet. Like for 1001. Push 1. Read 0 and Pop. Push 0. Read 1 and Pop

    • @kg3217
      @kg3217 3 роки тому +9

      ​@@atulkrishnan4673 2 States me ho sakta hai, `including` 1 final state. Bas saare combinations ko q0 pe point kardenge, like when a is top, input a or b, when b on top, input a,b; When Z0 on top, a and b as input so total 6 loop to self i think, then the final epsilon, Z0 / Z0 to final state

    • @anirbanchand4196
      @anirbanchand4196 3 роки тому +2

      @@ashwiniyer454 Exactly. He has written the condition 1,0/e two times. Instead of that, we can add one more transition 0,1/e on Q0 ... I think this should work properly...

  • @AnjaliSingh-uh3cl
    @AnjaliSingh-uh3cl 4 роки тому +3

    Please make the video fastly as we have to give semester exam you are saviour for us and great teacher you are lots of respect

  • @avrajitkundu7179
    @avrajitkundu7179 10 днів тому +1

    Tomorrow is my TOC exam and it is only because of you that I am getting confidence on this subject😊😊

    • @gamersrinu2166
      @gamersrinu2166 10 днів тому

      bhai west bengal se hai kya ?

    • @avrajitkundu7179
      @avrajitkundu7179 9 днів тому +1

      @gamersrinu2166 Haan kaise pata chala?

    • @csebangla3618
      @csebangla3618 9 днів тому

      ​@@avrajitkundu7179 Tera title dekh k pata chala...

    • @gamersrinu2166
      @gamersrinu2166 9 днів тому

      @@avrajitkundu7179 naam aur title dekh ke

  • @sinanmohammadnahian4768
    @sinanmohammadnahian4768 Рік тому

    You are the real life spiderman to me 💖

  • @sambhalive6517
    @sambhalive6517 4 місяці тому +4

    Sir 10:53 pe yaha par €,Z0 | Z0 hona chahiye na 🙄, epsilon to empty stack pe lgta hai nai 👀 ?

  • @tusharsahu8587
    @tusharsahu8587 3 роки тому +20

    Sir is PDA mein smjh nhi aaya ki aapne 2 baar (1, 0/E) kyon transition show kiya jabki hum same state pr hi they please explain kr dijiye!

    • @kg3217
      @kg3217 3 роки тому

      Reason pata chala ?

    • @tusharsahu8587
      @tusharsahu8587 3 роки тому +1

      @@kg3217 nhi yaar

    • @sanjeevbengeri9193
      @sanjeevbengeri9193 3 роки тому +1

      @@tusharsahu8587 that was by mistake kyuki wahaa unhone dono input keliye pop kar rahe hai toh nahi likha hai sochke likh diya hoga

    • @GaganTyagi2000
      @GaganTyagi2000 3 роки тому +4

      chal kya rha h pda me ..................................itni confusing to inception bhi nhi thi........................

    • @harshitpal5558
      @harshitpal5558 3 роки тому +3

      And what if the string starts with 1

  • @harinath_mishra
    @harinath_mishra 4 роки тому +1

    Sir thanks for uploading toc lectures......😊

  • @mohdmaazazhar885
    @mohdmaazazhar885 3 роки тому +8

    I have one doubt
    As the language have strings with equal number of 0's and 1's then 1100 should also be accepted
    but also there is no transition when we are at q0 and input symbol is 1 and stack has z0 as top eventually 1100 will not be accepted by given PDA

    • @raushanray1154
      @raushanray1154 6 місяців тому

      i think these three transition states are missing (1,1/11) (1,z/1z) (0,1/E)..........

  • @DeltaTech-fw3cd
    @DeltaTech-fw3cd 23 дні тому +1

    amazing treaching sir ji

  • @vinitakeer515
    @vinitakeer515 4 роки тому +2

    Waiting for next video sir

  • @mohammadfaisal3649
    @mohammadfaisal3649 2 роки тому +9

    Sir, thanks for these lectures....... i have a question : the two transitions you made are exactly same..... i,e 1,0/epsilon.... DO we really need to write this two times or just one time.????

    • @sohamkumbhar21
      @sohamkumbhar21 2 роки тому +4

      No, you dont have to write 1,0|ε two times as it is already written in loop but instead you should add one case 0,1|ε i.e if 0 arrives and there is 1 then we should pop.

    • @rahuldevanshu
      @rahuldevanshu 2 роки тому

      @@sohamkumbhar21 first one is input and second one is top of the stack,
      so from your case 0 is input (which can be there) but I don't think 1 should be there, because we're inserting only 0 here so how top of the stack is 1?

    • @PookiPoo
      @PookiPoo 2 роки тому +1

      @@rahuldevanshu for this case add 1,0 in input table after 010011 to get the desirable answer

    • @sohail0474
      @sohail0474 Рік тому +2

      No but you have to pop out in the stack

    • @komalprasadsahu6617
      @komalprasadsahu6617 Рік тому

      @@sohail0474 do you also have exams tomorrow

  • @educationwithhassannaseem2803
    @educationwithhassannaseem2803 3 роки тому +2

    love from pakistan sir

  • @ankitadas1613
    @ankitadas1613 2 роки тому +5

    Sir when we have to change the state??...in previous video we learnt that ,when new input come at q0, we should change the state...but in this case why it doesn't happen sir?? Can you please explain sir!!!

    • @sohaibshamsi
      @sohaibshamsi Рік тому

      In that video we had to compare one 0 with two 1s but in this grammar we were given equal counts for 0s and 1s

  • @833_sourinmukherjee7
    @833_sourinmukherjee7 Рік тому +5

    10:53 , I think it will be ε,z0/z0 . I dont know , I am right or wrong.

    • @sambhalive6517
      @sambhalive6517 4 місяці тому

      You are right 👍

    • @Nishantjain172k04
      @Nishantjain172k04 2 місяці тому +1

      No , at last step when there is no input in the input tape i.e epsilon and stack contains Zo then you have to pop out the Zo to make the stack empty
      Hence it will be €,Zo/€

    • @Nishantjain172k04
      @Nishantjain172k04 2 місяці тому

      If you will perform €,Zo/Zo
      It means that you are simply ignoring the Zo and it is still left inside the stack

  • @souravbhagat1358
    @souravbhagat1358 4 роки тому +1

    Sir computer graphics pr bhi vidoes uplaod kijye and thanks for this video

  • @uwuwuw9237
    @uwuwuw9237 2 роки тому

    i wish youtube had a super-like button

  • @nishasharma-sn3nq
    @nishasharma-sn3nq 4 роки тому

    I m fully satisfy sir ...sir mcq ki video v upload kar do...practices k leyea ..thanku

  • @anmolpande7658
    @anmolpande7658 Рік тому +3

    can you please tell when to change the state and when not?
    I am a bit confused.

  • @parthshah8057
    @parthshah8057 3 роки тому +7

    011100 what will happen in this case. We will not be able to pop 0s because there are 3 consecutive 1s.?

    • @ayushjha1308
      @ayushjha1308 3 роки тому

      Bhai order nhi dekhna hai no. Of 0s and no. Of 1s equal hona caahiye bus (011100) isme 0-3 hai 1-3 hai isliye accept hogi

    • @supreetmavintop1829
      @supreetmavintop1829 2 роки тому +1

      @@ayushjha1308 lekin sir ka explain kiya hua pda isko accept nahi karega kyu ki 1,Zo / 1Zo nahi lika hai

  • @trinmoydutta4879
    @trinmoydutta4879 Рік тому +2

    what if the input string is 011100??
    after pushing first 0, 3 0's is to be popped...what to do then?

  • @vinitakeer515
    @vinitakeer515 4 роки тому +2

    Waiting for next Lecture 🙏🙏🙏🙏🙏

  • @akm3168
    @akm3168 9 місяців тому +5

    I have a doubt why did we not go on new state ?

  • @ritikshrivastava9442
    @ritikshrivastava9442 3 роки тому

    5:55 sir TOS ko bahar nikal ke phele tos ko then input symbol agar sahi to dalna hai to koi faida hi nhi bahar nikalne ka to kiu consider kare is step ko

  • @kanchanmalethia5012
    @kanchanmalethia5012 4 роки тому

    Sir dssb k liye class start krdo plz u r great teacher ..

  • @aniketrajapure8251
    @aniketrajapure8251 Рік тому +1

    Sir in this sum for final state u wrote epsilon , zo / epsilon and in last video u wrote epsilon , zo / zo ..pls explain which to use when ?

  • @SALCEvaibhavadesara
    @SALCEvaibhavadesara 2 роки тому +3

    sir Last Transition should be ( E,z0/z0 ) but you mentioned ( E , z0/ E). sir Am i Right ? plz tell me ...
    Thankyou Sir , 👍

  • @mantavyajain9905
    @mantavyajain9905 4 роки тому +4

    can we denote (1,0/E) once like we did for (0,z0/0z0) ?

  • @dh.418
    @dh.418 9 місяців тому +2

    i have a doubt, in the previous example you changed state for every 1, but here there is a loop on only 1 state, pls explain

  • @engineerkaushal2982
    @engineerkaushal2982 7 місяців тому

    Thank you sir 🙏🏻

  • @gyanprakashverma8123
    @gyanprakashverma8123 4 роки тому

    Sir please aap iss series ko jaldi complete kr dijiye

  • @VansheetaSahuCI
    @VansheetaSahuCI Рік тому +3

    Aap yellow hoodie me bht acche lagte ho , ur winter collection is so awwsmm

  • @manishachanda8089
    @manishachanda8089 Рік тому +1

    sir apne last me mistake kiye hn shayad,, when we r reaching the final state the transition should be {,z0/0 but apne { likhe hn thats mean that z0 is popped out

  • @gangadharasarmadantu7363
    @gangadharasarmadantu7363 3 роки тому +2

    Sir, can we design a PDA that accept any no. of strings consists of equal no.of 0,1

  • @shreyashchoudhary4576
    @shreyashchoudhary4576 3 роки тому

    Very Helpful! Thanks a lot!

  • @asimbera1237
    @asimbera1237 3 роки тому +8

    when string starting with 1, we need to create another state q1 from q0 then do the same transition on q1 as q0 by replacing 0 to 1 and 1 to 0......

  • @dhirajdyandyan4504
    @dhirajdyandyan4504 Місяць тому

    Notification ❌naughty fication ✔️

  • @mayurdhakite4815
    @mayurdhakite4815 3 роки тому +7

    What will happen if the string 001110 or 00111100 is given for the same language, you have explained in the above video (i.e, n0(w) = n1(w) )??
    How the stack will perform PUSH & POP operation?

    • @keerthichakrabattula84
      @keerthichakrabattula84 3 роки тому +4

      push 1st 2 zero's and pop when for 1st two 1's again for 3rd 1 push it and when zero pop it.

    • @keerthichakrabattula84
      @keerthichakrabattula84 3 роки тому +1

      Hope I made it clear. Although it's been 8 months since you asked this I hope this can help some one.

    • @mexagrontoo
      @mexagrontoo 2 роки тому

      @@keerthichakrabattula84 how to know how many states will be there? like in a^n b^2n there were 4 states (q0,q1,q2,q3) but in this one its only one state (q0). how do you decide that?

    • @SALCEvaibhavadesara
      @SALCEvaibhavadesara 2 роки тому +3

      @@mexagrontoo Because we did not perform any SKIP operation . we don't need to skip any element. when we do skip operation then we have to change State.

  • @ujjwalpandey8212
    @ujjwalpandey8212 2 роки тому +3

    Sir can't we use 3 states for this ?

  • @manjotkaur5463
    @manjotkaur5463 4 роки тому +2

    Sir if string is 1100 then there is initial symbol z0 in stack then how we can perform 1,0/E transition.... Please clear my doubt.... How string will be accepted

  • @PrinceKumar-0701
    @PrinceKumar-0701 3 роки тому +1

    Sir, ye last question me jo PDA bnaye hain. Usme 1 se start hone wale string accept kaise honge? For example 111000.... Iske liye alag se state bnane parenge na?
    Reply kr dijiyega sir.... Thodi confusion ho rhi hai.

    • @suryapandey3905
      @suryapandey3905 3 роки тому

      1,z0/1z0 , 0,z0/ 0z0 , 1,0/ e , 0,1 / e , 1/1, 11 , 0,0/ 00 . 6 self loop and one change of state. $/z0/z0

    • @supreetmavintop1829
      @supreetmavintop1829 2 роки тому

      @@suryapandey3905 exactly thnx for Clearing my doubt

  • @lalitkumar8445
    @lalitkumar8445 2 роки тому

    Sir, jb last m € epsilon aaega as input and z0 will be in stack.....then PDA goes to final state.....now input queue and stack will be empty at all or still epsilon and z0 will be exist in both? As no operation will perform for that i guess

  • @novicemakers_abhishekkamal
    @novicemakers_abhishekkamal 3 роки тому

    Helpful to me👍

  • @continnum_radhe-radhe
    @continnum_radhe-radhe Рік тому +2

    ❤❤❤

  • @_ano_nym_ous_
    @_ano_nym_ous_ 3 роки тому +5

    State kb change krte hain???

  • @simransingh6137
    @simransingh6137 3 роки тому

    Thank you sir ❤️

  • @shivanijain402
    @shivanijain402 4 роки тому +2

    Sir plz TOC ko continue karo...

    • @GateSmashers
      @GateSmashers  4 роки тому +1

      Sure.. I will complete each and every lecture of toc soon

    • @shivanijain402
      @shivanijain402 4 роки тому

      @@GateSmashers thank you sir

  • @lakshyadalal8296
    @lakshyadalal8296 Місяць тому

    9:16 next transition ka fanda clear hi nhi ho rha
    Kab jana h next transitions pe!

  • @ankitachakraborty6909
    @ankitachakraborty6909 4 роки тому +3

    If string is - 011001 then it won't get accepted by the pda but here also we have equal no. Of a & b

    • @gauravbhosle281
      @gauravbhosle281 4 роки тому +1

      True my friend.
      And also if... "1" comes in initial state "q0" and there is no "0" present ni stack then also it will fail...
      Basically......
      Whenever we have 1 and there is no 0 present in stack then it will fail.
      Although we have equal no of zeros in our string but more number of 1 came first and PDA fails.

    • @mexagrontoo
      @mexagrontoo 2 роки тому

      @@gauravbhosle281 then 1 goes into the stack and the next zero will pop it out maybe?

    • @SALCEvaibhavadesara
      @SALCEvaibhavadesara 2 роки тому

      @@gauravbhosle281 then we have to perform 1 as a PUSH & 0 as a POP operation...

  • @sakshighosh9861
    @sakshighosh9861 3 роки тому +1

    Thnk you sir

  • @ratnakantahanse2661
    @ratnakantahanse2661 3 роки тому

    Thank you sir...

  • @rustin2380
    @rustin2380 Рік тому

    Never thought raka zone gaming would start teaching online XDD

  • @absingh773
    @absingh773 Рік тому +1

    Why we dont change the state when 1 arrives as done in previous vedio

  • @asimapal8847
    @asimapal8847 2 роки тому +1

    but why is there not more than one state ,like it should move to the next state na.Can you explain it please?

  • @sintupintuitsolutions6159
    @sintupintuitsolutions6159 Рік тому

    2 lakh views ho gaye sir

  • @avranj
    @avranj 4 роки тому +2

    why there is no change in state ......we have changed our inputs from 0 to 1 and vice versa
    ??????

    • @aparna8027
      @aparna8027 4 роки тому

      Couldn't understand that either

  • @rockeveryday5823
    @rockeveryday5823 9 місяців тому

    8:49 what if we have a string 101100 here ?

    • @AnkitSingh-yv5vj
      @AnkitSingh-yv5vj 8 місяців тому

      string should start with 0 only as language is (0,1)*

  • @thasleemmd4549
    @thasleemmd4549 2 роки тому

    Sir kyu aapne state change nahi kare input symbol 0 to 1 change hua jab?? Please reply sir

  • @s2_ultimatetech655
    @s2_ultimatetech655 2 роки тому +1

    I think Sir this machine will not work with string '011100' 🤔

  • @rifatara8177
    @rifatara8177 3 роки тому +2

    I don't understand when to change state and when to loop! Can anyone tell me?

  • @codingwale8
    @codingwale8 Рік тому

    Sir I have a question that if we perform push for zero and pop for one and a string is 0110 then what will be the answer
    We can push for zero but how we can pop 2 times for 1

  • @SonalDhani
    @SonalDhani Рік тому

    thanks u

  • @SKG12
    @SKG12 Рік тому +2

    It will not accept 101100 string
    It is partially right

  • @Developers657
    @Developers657 2 роки тому

    God mode activated

  • @MaitohTutgya
    @MaitohTutgya 11 днів тому +1

    it's incomplete, more transitions are to be included

  • @harshadadharne-1211
    @harshadadharne-1211 2 роки тому

    I understand the solving process but can't get that why there is just 1 state i.e q0 have all operation

  • @shagun3622
    @shagun3622 3 роки тому +1

    But what if string starts from 1 ...

  • @32subhashreemitra96
    @32subhashreemitra96 3 роки тому +1

    Sir, I'm not understanding when to change the state and when not to?

    • @thepriestofvaranasi
      @thepriestofvaranasi 3 роки тому +1

      Same. Sir changed states last time but this time he made all the transitions in the same state. I don't get it.

  • @tushargupta5805
    @tushargupta5805 4 роки тому +1

    looks like sir you messed up a little bit here you write {1,0 / E} two times and you forget to write {1,1/11}

  • @nehalpatil7
    @nehalpatil7 7 місяців тому

    @GateSmashers what if the string starts with 1

  • @Parm1.9M
    @Parm1.9M 4 місяці тому

    Is there same process for n(a)!=n(b). ??

  • @tushardixit5867
    @tushardixit5867 2 місяці тому

    Note: pda designed is not complete you have to make (1,0/z0) , (0,1/epsilon) and (1,1/11) states to q0 itself so that it can take those strings like 1100, 10..... and all those strings atq.

  • @omkarsalunke8172
    @omkarsalunke8172 Рік тому

    What if the string is like 011100? It will firstly push 0, then pop 0, then what??

  • @vinaypentam1511
    @vinaypentam1511 2 роки тому

    sir i think this is wrong because if the first symbol is 1 then we have to push it but there is no transition to do such operation

  • @AbcdAd-m8i
    @AbcdAd-m8i 11 днів тому

    ✋✋🟥🟥🟥Sir-- on popping--- go to next state ---as in prev lecture--- bt y nt hr----plzsay

  • @monikameena6909
    @monikameena6909 4 роки тому

    Sir plz provide compiler design classes

  • @gunjanarya2915
    @gunjanarya2915 4 роки тому +1

    Please make more vedios for dsssb tgt... Please🙏

  • @priyankagandotra5657
    @priyankagandotra5657 2 роки тому +1

    Sb shi hae pr mughe abhi bhi nhi Smj Aya k states change kb krni hae or kb self loop leni hae....🤦‍♀️

  • @SamridhaRajbhandari
    @SamridhaRajbhandari Місяць тому

    Is this logic also applicable for 011001?

  • @Anshak2439
    @Anshak2439 2 роки тому +2

    Can anyone explain why (1, 0/E) is repeated twice

    • @ayeshafirdous4696
      @ayeshafirdous4696 2 роки тому

      Even I don't understand

    • @raashidsalam6181
      @raashidsalam6181 Рік тому

      It's not necessary to repeat it..
      But this question will have 3 more transition for the possibility of 1 appearing in the first place

  • @animeDaisuki404
    @animeDaisuki404 3 роки тому +1

    I suddenly understood hindi

  • @ammanbaheti3789
    @ammanbaheti3789 Рік тому

    you have not covered the case of string which start with 1 and still satisfies the giiven ccondition

  • @UCSDebajyotiDas
    @UCSDebajyotiDas Рік тому

    How this machine accept the 10 string

  • @SahilWadhwani27
    @SahilWadhwani27 2 роки тому

    How will we Handle this string - 0110

  • @ultraviolet2474
    @ultraviolet2474 Рік тому

    What to do in the case of 0110 ?

  • @md.borhanuddinhimel7241
    @md.borhanuddinhimel7241 12 днів тому

    how can we push 1001 in stack?

  • @ritabratadas8183
    @ritabratadas8183 5 місяців тому

    Sir but the solution is not accepting strings like 01100011

  • @tanisha273
    @tanisha273 29 днів тому

    how is this gonna accept a string like "01110100"?

  • @alokmaurya1997
    @alokmaurya1997 4 роки тому +1

    Sir I am consistently following your lecture for NIC exam, one problem is there that TOC not mentioned in syllabus this year but i find minimum 3-4 question in previous year paper, should i focus on TOC or not? please reply me

    • @Ggggg-si9gn
      @Ggggg-si9gn 2 роки тому

      Bhai aya tha kya TOC paper mai ?

  • @Dheeraj-ru6jy
    @Dheeraj-ru6jy 4 роки тому +1

    भैया जी आप से request🙏😊 है की आप datastructure and algorithm ki नयी सीरीज चालू कर दो plzz भैया जी

  • @sawzeetmaharjan9559
    @sawzeetmaharjan9559 10 місяців тому

    Y'all, why there is no change of state while doing 1,0->E . He is doing all in one q0 state. kinda confused