Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Виберіть правильну обчислення Y
Y = | X + 1 |, при X<1;
Y= cos X, при X>=1;
if (X>=1) Y=abs(X+1); else Y=cos(X);
if (X<1) Y=cos(X); else Y=abs(X+1);
if (X>1) Y=cos(X); else Y=abs(X+1);
if (X>=1) Y=cos(X); else Y=abs(X+1);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!