We decide to save time by sampling 1000 flights at random fr…

We decide to save time by sampling 1000 flights at random from a single month (instead of 250 from the whole data set) and then using the same process to get a confidence interval for the percentage of flights in the year that are delayed. Is this a good idea? Choose all the correct statements.

Given database schema: Faculty (fid, name, tenured, dname, s…

Given database schema: Faculty (fid, name, tenured, dname, salary, chairID)Department (dname, phoneNumber, numberOfFaculty)Course (fid, dname, semester, cname) Write an assertion check in SQL for the following condition: The salary of any faculty member cannot be greater than their chair’s salary.

Consider the relation schema R(A, B, C, D, E) and the set F…

Consider the relation schema R(A, B, C, D, E) and the set F = {A → B, B → CE, D → AE} of functional dependencies. Show that the FD AB → AC is logically implied by F by using Armstrong’s axioms only (do not use the derived inference rules and the attribute closure algorithm).

Consider the relation schema R(A, B, C, D, E, F) and the set…

Consider the relation schema R(A, B, C, D, E, F) and the set S = {AB → C, BC → AD, D → E, C → B} of functional dependencies. Assuming that R is decomposed into the relation schemas R1(A, B), R2(B, C), R3(A, B, D, E), and R4(E, F). Use the Chase test to show if this is a lossless decomposition.

Suppose we do not have access to the full data set of flight…

Suppose we do not have access to the full data set of flights, but we are able to sample 250 flights at random from the table. We would like to estimate the percentage of flights that are delayed.  To do this, we sum the number of flights in our sample and divide by 250 (and multiply by 100).  We then resample with replacement from our sample many times, each time computing this statistic (sum of delayed flights / 250 * 100).  With this process, we obtain a 95% confidence interval: (23.7%, 64.3%).  Choose all the correct statements: