Convert following infix expression to the prefix expression.
a - b + c * (d / e - (f + g))
Answer Posted / bipin from utkal university mc
a-b+c*(d/e-(f+g))
a-b+c*(d/e-(+fg))
a-b+c*(/de-(+fg))
a-b+c*(-/de+fg)
a-b+(*c-/de+fg)
-ab+(*c-/de+fg)
+-ab*c-/de+fg (final answer)
| Is This Answer Correct ? | 34 Yes | 5 No |
Post New Answer View All Answers
Why is quicksort better than mergesort?
Have you ever used HashTable and Directory?
What is data structure explain in detail?
Mention for which header list, you will found the last node contains the null pointer?
What do you mean by quadratic probing?
What are three common types of traversals?
Which sorting technique is faster?
Differentiate between hashmap and hashtable.
What are the properties of an algorithm?
What is impact of signed numbers on the memory?
What is difference between array and arraylist? When will you use array over arraylist?
Define avl tree?
Can arraylist hold duplicates?
Are dictionaries mutable?
Why set will not allow duplicates?