Convert the following infix expression to post fix notation
((a+2)*(b+4)) -1

Answers were Sorted based on User's Feedback



Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / uma

a2+b4+*1-

Is This Answer Correct ?    101 Yes 8 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / ahan

( ( a + 2 ) * ( b + 4 ) ) - 1
\ / /
a2+ b4+ /
\ / /
/
a2+b4+* /
\ /
a2+b4+*1-

Is This Answer Correct ?    58 Yes 2 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / arun chowdary g

a2+b4+*1- is correct because in postfix traversals are from
left, right and then root.

Is This Answer Correct ?    37 Yes 4 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / a khan

a2+b4+*1-

Is This Answer Correct ?    25 Yes 4 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / nips aka suman

a2+b4+*1-

Is This Answer Correct ?    20 Yes 2 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / pavan

@ Revathy :
Postfix : AB+DC-*
Prefix : *+AB-DC

Best way to find Prefix adn post fix is to create a Binary
tree and do a pre-order traversal and post order traversal
on it.

Is This Answer Correct ?    7 Yes 1 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / ankita

a2+b4+*1-

Is This Answer Correct ?    8 Yes 2 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / revathy

Convert the following expression to postfix and prefix
(A+B) * (D-C)

Is This Answer Correct ?    5 Yes 5 No

Convert the following infix expression to post fix notation ((a+2)*(b+4)) -1..

Answer / kiran reddy

-(*(+(a2)+(b4)))1

Is This Answer Correct ?    18 Yes 49 No

Post New Answer

More Data Structures Interview Questions

Which is the parent class of sortedset<e> class?

0 Answers  


How do you sort an array in descending order?

0 Answers  


Can we store primitives in collections?

0 Answers  


What are the types of binary tree?

0 Answers  


Is hashtable better than dictionary?

0 Answers  






What is arraylist load factor?

0 Answers  


Can we declare array size as a negative number?

0 Answers  


How will you represent a linked list in a graphical view?

0 Answers  


What is vector and types of vector?

0 Answers  


What is a height of a tree?

0 Answers  


Write a program to reverse a link list.

0 Answers   iNautix,


Explain the expression trees?

0 Answers  


Categories