Respuesta :

method_missing in the Ruby programming language is part of the search algorithm and is a powerful way to capture objects.

Further explanation

Method is a collection of programs that have names. Method is a means for programmers to break a program into small parts to make it more complex so that it can be used repeatedly.

Method is an operation in the form of functions that can be done by an object. The method is defined in the class but is called via the object. For example, in the pear object: there are methods to grab taste, peel, and others

The parameter is the place of storage (variable) in the function, which is used to carry out data from the caller into the function. The parameter is located between brackets (and) after the identity of the function, and a function can have several parameters separated by commas.

Types of Parameters

  • Function Parameters or also referred to as Formal Parameters are local variables that are established in the function declaration (not definition), which is a repository for the values ​​of the arguments given when calling a function.
  • Arguments are parameters that accompany function calls. is a place where you can provide data to be used in a function that is called and given when calling that function.

Learn More

programming method https://brainly.com/question/13540854

parameters and functions https://brainly.com/question/13540854

Details

Class: high school

Subjects: Computers and Technology

Keywords: methods, functions, parameters

Answer:

void CablePlan::SetNumDays(int numDays) {

 /* Your solution goes here  */

  this ->numDays = numDays;

}