What is the ending value of numItems if myChar = ‘X’? switch…

What is the ending value of numItems if myChar = ‘X’? switch (myChar) {   case ‘W’:      numItems = 1;         case ‘X’:      numItems = 2;   case ‘Y’:      numItems = 3;       case ‘Z’:      numItems = 4;}

What foreign key action should be added to ensure that if a…

What foreign key action should be added to ensure that if a supplier is removed from the Supplier table, the products associated with the same supplier are also removed? CREATE TABLE Product (   ProductId INT NOT NULL AUTO_INCREMENT,   ProductName VARCHAR(50),   UnitPrice DECIMAL(5,2),   SupplierId INT,   PRIMARY KEY (ProductId),   FOREIGN KEY (SupplierId) REFERENCES Supplier(SupplierId)      _____);