andrealoverad5632 andrealoverad5632 07-06-2024 Computers and Technology Answered Given this function header:int mystery(int x, double y, char ch);This is a valid invocation of the mystery function:int y;double x;char ch;cout << "The mystery is " << mystery(y, x, ch) << endl;A. TrueB. False