Ask Question

True/False: When you make a function call, the order of the arguments you send does not matter as long as the number of arguments matches the number of parameters the function has. True False

+4
Answers (1)
  1. 26 May, 21:23
    0
    False

    Explanation:

    The order of arguments sent matters because what if you were trying to assign a int parameter as string, moreover there is one to one mapping and thus the results computed by the function will be wrong too. The order may cause a bug in the functionality (when the wrong value is assigned to the wrongly selected parameter due to alteration in order), cause run time errors (when the data type of parameter and argument does not match due to alteration in order)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “True/False: When you make a function call, the order of the arguments you send does not matter as long as the number of arguments matches ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers