English, asked by Anonymous, 6 months ago

Q4 (a) Which among the following list of operators has the highest precedence ?
-, **, %, /, «<,»>,
(b) What is the difference betweenthe formal parameters and actual parameters? What is their aterna
name? Also give a suitable Python code to illustrate both​

Answers

Answered by Fatimakincsem
0

The difference between actual and formal parameters is gievn below.

Explanation:

  • In a signature method or during the call of a function, formal parameters are used.
  • The objects or variables that are defined in the function call are known as formal parameters.
  • The other name of the formal parameter is "variables".
  • While the actual parameter is those expressions that are passed in the function and are also known as arguments.

Similar questions