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+15|, при X>0;
Y=X-15, при X<=0;
if (X>0) Y= abs (X+15); else Y=X-15;
if (X<0) Y= abs (X+15); else Y=X-15;
if (X<=0) Y=X+15; else Y=X-15;
if (X>0) Y=X-15; else Y=X+15;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!