Need help

Mikah

Newbie
Joined
Nov 6, 2017
Messages
22
Reaction score
1
I wrote the program but it does not give the anwers below can someone help me i have a test
Given a fragment of the program
A=-5
B=-3
PRINT ABS(A-B)/2+ABS(A)*B^2
Choose one answer:
a. -29
b. 226
c. 46
d. 229
e. -44
 
a. -29 PRINT ABS(A+B)*2-ABS(A)*B^2
b. 226 PRINT ABS(A-B)/2+(ABS(A)*B)^2
c. 46 PRINT ABS(A-B)/2+ABS(A)*B^2
d. 229 PRINT ABS(A+B)/2+(ABS(A)*B)^2
e. -44 PRINT ABS(A-B)/2-ABS(A)*B^2
 
Back
Top