Thanks so much!! I was about to flunk my ACSL contest but then I watched this video. Thanks a lot again god bless you, madam.
@official-ali5 жыл бұрын
you are just making our life easier. Thank you.
@SaifulIslam-en3ji4 жыл бұрын
Hi,i love your teaching style where you have shared so technically, thanks for effective lecture on prefix and postfix.
@HEENARANA-ij6my11 ай бұрын
In previous video u said first we have to reverse the equation n solve from right to left but here you have directly started with right to left without reverse
@harshyadav20818 күн бұрын
did you found the answer ?
@shivamchhabra71355 жыл бұрын
Beauty with brain ❤️❤️😍 Edit 1: my comment got highlighted 😍❤️
@keerthanarajendran9883 жыл бұрын
Thank you so much mam you are making DSA a easier subject
@hashensenevirathna12454 жыл бұрын
Madam you are very talented and you can teach very clearly ,this lecture series is great help to me ,thank you lot👍
@vaishnavidongare44084 жыл бұрын
Nice explanation !! Can u plzz give code implementation also.
@shaileshadole80802 ай бұрын
no
@supriyavarma81073 жыл бұрын
Ma’am please make a lecture on creating a program for infix to prefix and Infix to postfix expression
@GADDETEJESH4 ай бұрын
mam why didn't u give codes for all this expression evaluations😔😔😔
@sabitkondakc91474 жыл бұрын
Thanks for the Lecture, in addition to it, "-+2*34/[16]^23" in coding it's a must to put a type brakets to define a two or more digit number, otherwise it'll fail; here an example with C# : public double EvaluatePrefixExpression(string evaluateString) { StringBuilder appendBuilder= new StringBuilder(); int length = evaluateString.Length; for (int i = length - 1; i >= 0; i--) { string c = evaluateString[i].ToString(); if (char.IsDigit(c,0)) { double term = Convert.ToSByte(c); Push(term); } else if (c=="]") { char join = evaluateString[--i]; while (join!='[') { appendBuilder.Insert(0, join); join = evaluateString[--i]; } Push(Convert.ToDouble(appendBuilder.ToString())); appendBuilder.Clear(); } else { switch (c) { case "^": double first = Pop(); double second = Pop(); double result = Math.Pow(first, second); Push(result); break; case "*": first = Pop(); second = Pop(); result = first * second; Push(result); break; case "/": first = Pop(); second = Pop(); result = first / second; Push(result); break; case "+": first = Pop(); second = Pop(); result = first + second; Push(result); break; case "-": first = Pop(); second = Pop(); result = first - second; Push(result); break; } } } return Pop(); }
@luissalvador13484 жыл бұрын
Wow this is so easy to understand. Thank you.
@aayushisharma40513 жыл бұрын
madam your teaching is very good .
@AnishKumar-qq8yh2 ай бұрын
Dhanyawad from andromeda galaxy
@animefacts40072 жыл бұрын
Dhanyabad from Nepal 💓💓💓
@vakhariyajay22242 жыл бұрын
Thank you very much. You are a genius. 👍👍🔝🔝👌👌🙏🙏
@soumikpaul24135 жыл бұрын
always feel good to learn from you
@AkashGupta-bu3kr Жыл бұрын
You are a great teacher mam
@sushma26152 жыл бұрын
Your work is really appreciatable... Thank you so much mam....
@TahirKhan-fd8vr2 жыл бұрын
Literally mam you are fabulous 😃
@atabhabibi80913 жыл бұрын
Thank you so much for your help May God guide you
@vindy11712 Жыл бұрын
Nice explanation madam 🥺❤
@vikranthbandi58334 жыл бұрын
your explanation is very good mam
@shivrajsinhgohil94744 жыл бұрын
Very clear explanation Ma'am.
@nimraali40854 жыл бұрын
Your teaching method isExcellent 😍
@aniketkumar25022 жыл бұрын
Thanks you mam for making useful video for us
@rumiNITPatna23 күн бұрын
amazing video mam!
@kyliemun26815 жыл бұрын
your explanation is really clear maam!!!!! please keep on making new videos. if possible, please do for queues in data str too:)
@vamshikrishnam92064 жыл бұрын
u made DSA easier
@mehakgoyal92234 жыл бұрын
Your lecture does wonder for my revision... Thanks jenny👍
@V.Rchannel10 күн бұрын
Mam -*+abc/d^ef ans is 18 solve proper plz😊
@TheDIVINEcasteR3 жыл бұрын
the priority of ^ is 4. Right?
@vikranthbandi58334 жыл бұрын
what is the algorithm to infix to postfix and also infix to prefix and vice versa ??
@Ek_e_Alfaaz4 жыл бұрын
Thanku so much for ur lectures 🙏😊
@kishork804 жыл бұрын
simply great :) loved it
@justcurious194010 ай бұрын
Nice explanation.
@irfanbasha74454 жыл бұрын
Mam,Thnk u. But we also need code for dis.😜
@ArijitsClasses2 жыл бұрын
Mam one question, Why are we using carat for calculating powers??? Isnt it used for calculating XOR operations??
@verilog_programming Жыл бұрын
ma'am, we can use anyone method to transform the expression , correct or not
@code_with_me08012 жыл бұрын
Thank you ma'am
@meghasinha17063 жыл бұрын
Thanks for your efforts mam
@namangokharu20694 жыл бұрын
Here is again a problem, 0:59 prefix is +a-*bc/d^ef
@niharikagoulikar29214 жыл бұрын
No,it's wrong plz check your answer
@pravallikachinnari10473 жыл бұрын
Naman Gokharu is correct
@ravibisht29044 жыл бұрын
Woow Mam your lecture are awesome and no offence I could't take my eyes 👀 from u look pretty too.. Thanks🙏🙇
@sheikhobama37593 жыл бұрын
Ma'am, Thank you so much..all your videos have helped me a lot.. Although I have a small doubt. (5:15) For "/168" we did 16/8 and not 1/6, but for *342 why are we doing 3*4 and not 34*2. It would be great if anyone could explain it to me. Thank You.
@vikasbagri12253 жыл бұрын
because 16 here is acting as a whole ( given d = 16 ), while 3 4 2 are three individual values ( given a = 2, b = 3, c = 4 ). Hope you have got your answer.
@SachinKumar-up6jr2 жыл бұрын
😁😁😄
@vinaykagitha67043 жыл бұрын
Simply awesome 👌
@prashantpandey90512 жыл бұрын
Bhot bhdiya madam ji😇😇
@shirishareddy27954 жыл бұрын
mam last video 3.8 u tell prefix scan from left to right but in these lecture u tell right to left.which one is right.
@maheshwarienmulwar25002 жыл бұрын
You are just awesome💯
@sd.firdose32754 жыл бұрын
U r just amazing...mam..
@JavaAidTutorials5 жыл бұрын
Good one..
@c.d.premkumar6867 Жыл бұрын
4.50 how do you distinguish between single digit operand and double digit operands ?
@gueshteklu86248 ай бұрын
Hello My Teacher ? Can I Ask U 1 Question??? Evaluation Of Prefix With Out Stack Is Easier Than That of Using Stack And With Out Stack I f The compiller Executes Multiple Times Why We Need Using Stack To Evaluate Such Expression? Thanks.
@medserghini10256 ай бұрын
without stack the compiler need to evaluate the expression multiple times so that is time consumming process instead using stack the process will be fast because the evaluation is only once time
@PriyanshuSharma-vf6su4 жыл бұрын
amazing explanations
@pradipathawale8285 Жыл бұрын
Mam, 2^2^2^2 evaluate this using prefix please..There are getting two answers, 256 and 65,536, So, kindly solve my difficulty. First convert into prefix
@nikhilpachkor83494 жыл бұрын
Nice Explanation
@laplacesdemon81404 жыл бұрын
excellent work
@weareindians87313 жыл бұрын
Thank you mam. And mam you are looking beautiful
@nishanty73925 жыл бұрын
Love u Mam 😘❤
@ayesha242376 ай бұрын
Power has lower precedence than divide so why its come before / and -
@arshpreet8052 жыл бұрын
Mam a+b*c-d/e^f and am getting prefix ^-+a*bc/def if am doing wrong please correct me......
@shekapuramrutvik2953 жыл бұрын
Mam the evaluation is working only for single digit(i.e. evaluation using stacks). Is there anyway for doing on multidigit operands using stacks?
@bigk23673 жыл бұрын
IT CAN WORK FOR BOTH BROTHER.
@BTECH-j1v Жыл бұрын
mam's now hits hard
@abdulwahabkhan52603 жыл бұрын
Thanks a lot miss.
@sparkindness4 жыл бұрын
Mam how to give a=2, b=3,c=4, d=16 e=2 f=3please tell me all time the value is same And also tell me ABC+* DE/- what is the value of A and B,C,D E only and how to take that plz mam my exams are soon so i expecte to reply me
@mdmahfuzarrahman23222 жыл бұрын
Wonderful explanation ♥ ♥ ♥ ♥
@prajyotdeshpande6602 Жыл бұрын
What is precedence of "%" symbol?
@shekshub47605 ай бұрын
Modulus
@samsaikia59493 жыл бұрын
Do we have to follow operator precedence ?
@gd74745 жыл бұрын
Awesome😇
@ranjeetrathaur93783 жыл бұрын
Thanks ma'am! ❤️
@coder4861 Жыл бұрын
please tell the answer of this question mam evaluate the expression below expression using prefix form 2 3 9 * + 2 3 ^ - 6 2 / +
@coder4861 Жыл бұрын
please give solution of this question mam this question is of aktu 2020-21
@divyamadival97814 жыл бұрын
Thank u soo much
@SounakKaran Жыл бұрын
mam plz give the coding implementation also then it will fruitful
@aatmakumar46312 жыл бұрын
Nice class
@RiteshKumar-ud7bf3 жыл бұрын
Ma'am what if there is just one operand after an operator.
@amishss23524 жыл бұрын
Output of the following prefix exp *+2-21/-42+-531 Plzz mam solve this ques...
@sheetal_s51534 жыл бұрын
I think This is invalid expression
@amishss23524 жыл бұрын
Thank you for reply me back..
@amishss23524 жыл бұрын
Actually solve hogya tha Baad main.. Output is 2
@sheetal_s51534 жыл бұрын
@@amishss2352 how it is solved
@amishss23524 жыл бұрын
Convert this prefix expression to infix expn ...then evaluate this
@HosRo41612 жыл бұрын
Thank you!
@diptimitra6073 жыл бұрын
Tusi great ho ❤️
@antarikshasharma31025 жыл бұрын
Thank you so much mam
@sanjanam.r1643Ай бұрын
Can anyone please share the code for prefix evaluation!?
@subashpudasaini34335 жыл бұрын
Thank you mam😍
@nidhigupta98014 жыл бұрын
what if we get -ve value in between as 4(-2)6/+9+13/-
@anamitramaiti11754 жыл бұрын
Thank you so much 😊😊😊
@reshma49613 жыл бұрын
Thank you💕✨
@mashapoguajay33222 жыл бұрын
mam why to check right to left in prefix
@025.madhuraaher92 жыл бұрын
Mam could share the program to evaluate prefix operation
@subhajitde49175 жыл бұрын
Plz mam dont look this much pretty i got distracted 😍
@ShubhamKumar-su2wr3 жыл бұрын
Mam , how to code the priority table?
@aryanmaniyar3475 Жыл бұрын
Thanks Mam :)
@nikhilpattanaik-31184 жыл бұрын
Mam if the prefix expression is -5 6 7 the what will be its result. Plz give the ans mam
@motivationalspot14484 жыл бұрын
1 7 is the answer.
@thedevhacker46083 жыл бұрын
Maam I have this Expression A + B * C ^ (X - Y * Z / ( B + 2) ) < Y * B - (C + D) &&B != ( C + A) ^ 3 How can I solve this it has comparision operator and &&
@bigk23673 жыл бұрын
CONDITION OPERATOR ALWASY GIVE ANSWER IN TRUE OR FALSE(1 AND 0) SO AS I THINK AFTER SOLVING BOTH SIDE YOU WILL GET TRUE OR FALSE AS YOU ARE USING && BOTH CONDITION NEED TO BE TRUE.
@mdnoorzafirmondal73982 жыл бұрын
Can you evaluate this postfix operation : 2 3 + 11 * /
@vishalkumar...59712 жыл бұрын
239*+23^-62/+ postfix using stack mam this question is not solve me so mam plz solve the question...plzzzzzz
@HEENARANA-ij6my11 ай бұрын
Mam i guess u didn't reverse the equation ??? For prefix
@gauravpoosarla4 жыл бұрын
is multidigit postfix or prefix possible?
@akashkaundal71045 жыл бұрын
Hats off 2 u mam
@manishshah24244 жыл бұрын
You are GOD
@Prologgaming4 жыл бұрын
Right
@dhruvpatel59473 жыл бұрын
Hii,mam, Evaluate the following postfix expression using a stack.show the stack contents. AB*CD$-EF/G/+ A=5,B=2,C=3,D=2,E=8,F=2,G=2 Please solve this question And make a video please mam
@vikranthbandi58334 жыл бұрын
mam can i know what is the code for the following question ?? and also what type of stack operation to be performed is it array method or linked list method which is efficient ??