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
What are data and data types?
How to reverse a singly linked list?
Difference between calloc and malloc ?
Is data structure a data type?
What are the tasks performed during inorder traversal?
Treemap orders the elements on which field?
Which interfaces are implemented by abstractsequentiallist?
Does concurrenthashmap allow null?
Why is quicksort better than mergesort?
In what order the elements of a hashset are retrieved?
What is data structure? Explain.
How does a selection sort work?
Define a queue?
Does mentioning the array name gives the base address in all the contexts?
Differentiate between queue and deque.