Sir aap bohot badiya para te ho... 😇 I am thankful from the core of my heart... And i dont use them as last moment tutions... I just love them so i see wenever i get time...
Thanks Sir..Once I see your lecture, don't need to explore other videos on same topic. Even though I hv already done with all topics, still I go through the knowledge gate series..It satisfy me at overall.
Thank u So Much Sir. Having a great teaching skills u have sir. My paper will tomorrow And I have ni idea how to prepare But When I was Starting to saw Ur Tutorial It Helped me to prepare for tomorrow exam.
Dear student, thanks a lot for your feedback, all the very best for your exam 👍 Keep learning and supporting !! Do visit our website www.knowledgegate.in for more courses and contents !!
Sir your videos is too good. But the difficulty I have found is that next because one topic has multiple videos so what will Be the next video it is difficult for me to find that if you made index or give no on videos it will be easy for me to find the next video
Hi Sir, I have a small question. My grammar looks like this: S-> a {action} | abc {action} | ab {actions} So to resolve this non-deterministic grammar what I think of is: S-> a {action} A A-> bc {action} | ab {action} is it fine? what I feel is that there is something wrong in S-> a {acion} A line because we can't trigger action just after matching 'a' only. Please provide a solution to this.
You're right that there might be an issue with triggering an action just after matching 'a'. One possible issue is that the action will be triggered even when 'a' is not followed by a valid string in the language. A better approach would be to trigger the action at the end of a complete string that matches the language. One way to resolve this to ensure the action occurs after a valid string has been matched would be to rewrite the grammar as follows: ``` S → A A → aB {action} B → bc {action} | b {action} ``` In this updated grammar, the action is triggered after a complete and valid string has been matched in production B. This ensures that the action occurs only when the 'a' is followed by either 'bc' or 'b', both of which are valid strings in the language.
Most welcome! Keep supporting & stay connected for more amazing contents👍😊 You can also check out our course for all Computer Science subjects, sharing the link below: www.knowledgegate.in/learn/Zero-to-Hero-in-Computer-Science
For complete Compiler Design, check out this video: th-cam.com/video/OQCjakjCJu4/w-d-xo.html
Sir aap bohot badiya para te ho... 😇
I am thankful from the core of my heart... And i dont use them as last moment tutions... I just love them so i see wenever i get time...
Thanks Sir..Once I see your lecture, don't need to explore other videos on same topic. Even though I hv already done with all topics, still I go through the knowledge gate series..It satisfy me at overall.
Thank u So Much Sir.
Having a great teaching skills u have sir.
My paper will tomorrow And I have ni idea how to prepare But When I was Starting to saw Ur Tutorial It Helped me to prepare for tomorrow exam.
Dear student, thanks a lot for your feedback, all the very best for your exam 👍 Keep learning and supporting !! Do visit our website www.knowledgegate.in for more courses and contents !!
Waiting eagerly for more compiler videos. Thanks for your all of your efforts Sir to give clear understanding video
Thank you Sacnhet bhai your existance is blessing
Most welcome dear❤ Keep learning & supporting! Stay connected for more amazing videos & contents 👍
Sir apke videos dekhne aur maza aata kyn ki Jo class me pure din me samghte ho ..apke videos se 10 me samgh aata hai
Bohot Bohot Dhanyavaad GURUJI ❤
You're welcome. Keep learning, supporting & stay connected for more content👍
Thankyou So much sir 😊😊✌
This is your huge favour on all of us preparing for gate
Hope you ll soon start CN series😊
You are welcome Megha.. Your hopes will be reality soon.. May take sometime but will be..
@@KNOWLEDGEGATE_kg ji Sir Thank you😊😊😊😊
Sir we are strongly in need of videos on permutations and probability as it will help us understand so many topics clearly
I understand Sushil.. I am trying.. I will upload as early as time allows me..
Thanks alot sir
I am really very thankful to you for all your nobel efforts you are putting in these videos
You are welcome Suraj.. It feels good when student recognize it and do great..
Favorite teacher ❤️
Thank-you sir
You're most welcome dear Naveen, keep learning & supporting !! Do visit our website www.knowledgegate.in for more courses & contents !!
All doubt clear Thanxx alot sir
Sir great lecture liked
sir please complete this video series of grammar as possible you can and very very Thank you for all these videos
You are welcome.. Yes rockey I will be uploading a video daily..
sir aapka video dekhne k baad baaki sab video bakwaas lagta hai
Sir CN pr video bnaiye ya compiler pe
Sab banaenge Mohammad bhai.. Samay lagega.. I am trying to upload daily.. saath dete rahiye..
Good morning sir, please please make more video in compiler design.
Thank u so much sir 🙏
Kindly solve this by left factoring
rexpr -> rexpr + rterm | rterm
rterm ->rterm rfactor | rfactor
rfactor -> rfactor * | rprimary
rprimary -> a | b
Please drop all your doubts in our official discussion forum tiny.cc/yt_gatefreegroup, KG mentors will help you.👍
understood
Sir please complete this series of compiler design...
sir please upload videos on parsers or syntax analysis
please make video for cryptography
I would like to recomand you sir.. Please complete this series..
Sir aap sare subject's upload kr do to sab coaching lena band kr denge
hahaha.. I intent to do that Yami.. Lets see how far it goes..
Thanks a lot
Where did the small (b) go in problem 3 at the last ? Shouldn't the final production contain a small b too ?
Yes
Thanks sir
in 3rd question can we consider BcS''' in the third production
Sir (s'''') should be s'''' -> d/b/€ ?
Ek Baar main samjh aa gya thank you so much sir..😘
Correct
@@I_am_smooth_as_butter I also thinking this
Sir your videos is too good. But the difficulty I have found is that next because one topic has multiple videos so what will Be the next video it is difficult for me to find that if you made index or give no on videos it will be easy for me to find the next video
Hi Razwan.. Thanks for the feedback. Vidoes are arranged in playlist sequentially.. You follow the playlist, it will not be difficult then.
Sir why in the 4th question we did not divide i,E,t,S,S'? like we did in 2 and 3 problems
Nice
The abserb interested with program compiler machine
first like then watch
Sir compiler ka complete cource kaha se milega
I can pay for it
@knowledegate
Sir plz reply
Hi sir , probability nhi krai Aapne
Sorry sir but you have to miss b in 3rd example in 8 row....
Sorry 6th row..
No 3 ans is wrong..it should be S(iv)=b/€/d
Hi Sir, I have a small question.
My grammar looks like this:
S-> a {action} | abc {action} | ab {actions}
So to resolve this non-deterministic grammar what I think of is:
S-> a {action} A
A-> bc {action} | ab {action}
is it fine? what I feel is that there is something wrong in S-> a {acion} A line because we can't trigger action just after matching 'a' only. Please provide a solution to this.
You're right that there might be an issue with triggering an action just after matching 'a'. One possible issue is that the action will be triggered even when 'a' is not followed by a valid string in the language. A better approach would be to trigger the action at the end of a complete string that matches the language.
One way to resolve this to ensure the action occurs after a valid string has been matched would be to rewrite the grammar as follows:
```
S → A
A → aB {action}
B → bc {action} | b {action}
```
In this updated grammar, the action is triggered after a complete and valid string has been matched in production B. This ensures that the action occurs only when the 'a' is followed by either 'bc' or 'b', both of which are valid strings in the language.
Thaankyou so much Sir🔥🙏
Most welcome dear ❤ Keep learning & supporting ! Do visit our website www.knowledgegate.in for more amazing courses & contents 👍😊
Tq sir 🙂
Most welcome! Keep supporting & stay connected for more amazing contents👍😊
You can also check out our course for all Computer Science subjects, sharing the link below:
www.knowledgegate.in/learn/Zero-to-Hero-in-Computer-Science