To convert a*(b+c)/e-f to prefix: First convert a*(b+c) to *a+bc. Then (*a+bc)/e becomes /*a+bce. Finally, subtract f: -/*a+bcef. Prefix notation places operators before their operands, requiring systematic conversion from innermost parentheses outward.