A.code 1
B.code 2
C.code 3
D.all of the below
code 1
Code: Select all
$Toaster==$PluggedIn
$Bread==[TRUE]
If $Toast==$Toaster AND $Bread
write to log= 'You have toast'
end
Code: Select all
$Toaster==$PluggedIn
$Bread==[TRUE]
If $Toast==$Toaster AND $Bread==[TRUE]
write to log= 'You have toast'
end
Code: Select all
$Toaster==$PluggedIn
$Bread==[TRUE]
If $Toast==$Toaster AND ($Bread==[TRUE])
write to log= 'You have toast'
end