Answer:
téléphone
Explanation:
thats how you say phone in French also you can go on Google translate or word reference to translate words.
Answer:
#include <iostream>
using namespace std;
void MinMax(int x,int y,int z,int *max,int *min)
{
int big,small;
if((x>y)&&(x>z)) //to check for maximum value
big=x;
else if((y>x)&&(y>z))
big=y;
else
big=z;
if((x<y)&&(x<z)) //to check for minimum value
small=x;
else if((y<x)&&(y<z))
small=y;
else
small=z;
*max=big; //pointer pointing to maximum value
*min=small; //pointer pointing to minimum value
}
int main()
{
int big,small;
MinMax(43,29,100,&big,&small);
cout<<"Max is "<<big<<"\nMin is "<<small; //big and small variables will get value from method called
return 0;
}
OUTPUT :
Max is 100
Min is 29
Explanation:
When the method is called from first three integers maximum will be found using the conditions imposed and maximum value will be found and similarly will happen with the minimum value.
Answer:
S-curve pattern of innovation.
Explanation:
Based on the information provided with regards to Musccanic Inc.'s microprocessor production cycle, it can be said that this scenario illustrates the S-curve pattern of innovation. This term refers to the slow rise in profits as a product enters a market, then the rapid rise as it hits its maturity stage, and then the decline as it reaches the end of it's life cycle, usually when an updated version is going to be released. Which in this scenario is every 4 years when a new microprocessor is going to be released.
If you have any more questions feel free to ask away at Brainly.