Answer:
Explanation:
--> First constraint should be satisfied.
UnitPrice>=22.
--> In Second and third either of one should be satisfied.
CategoryID in (4,7,8) OR (CategoryID in (1,3) AND UnitsInStock >= 40)
--> So, Final statement is :
SELECT ProductID, UnitPrice, CategoryID, UnitsInStock FROM Products
WHERE UnitPrice>=22 AND (CategoryID in (4,7,8) OR (CategoryID in (1,3) AND UnitsInStock >= 40))
The answer is D, the standard course of action adopted by a business.
Answer:
Explanation:
try
clc
clear
close all
x=linspace(0,2*pi,7);
z=cos(pi.*x./3)
% the output on mine is to 4 decimals so it looks a bit different than what the output on your example is , but, I think if you change the format to decimal 2 it will look the same :)