Convert following infix expression to the prefix expression.
a - b + c * (d / e - (f + g))

Answer Posted / lucky

a-b+c*(d/e-(f+g))
a-b+c*(d/e-+fg)
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

Is This Answer Correct ?    14 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is priority queue sorted?

508


Define disjoint set adt?

529


Can we use any class as map key?

443


Does linkedhashset allow duplicates?

417


What is mean by merge sort?

497






Define right-in threaded tree?

544


Can we increase the size of statically allocated array?

498


What are different techniques for making hash function?

490


Is hashmap ordered?

529


How do you sort a map by key?

495


How would you implement two stacks using a single array?

551


What is the most used data structure?

458


How efficient is binary search?

462


How do you sort a list in reverse order?

466


What do you mean by separate chaining?

513