Which of the following queries returns the same output as th…

Which of the following queries returns the same output as the query below?   SELECT c.customer_id, c.first_name , c.last_name , c.phoneFROM salestransactions AS sINNER JOIN customers AS  c ON c.customer_id=s.customer_idINNER JOIN productsinfo AS  p ON p.product_id=s.product_idWHERE p.product_type=’automobile’  AND c.phone IS NOT NULL ; 

In the blank spaces below, write the output produced by each…

In the blank spaces below, write the output produced by each line of the following program, as it would appear on the console. def slogan(one, four, two): print(four, “minus”, two, “is”, one) one = one + “1” def main(): four = “ten” one = “cat” twelve = “two” two = “dog” three = four + “4” slogan(two, twelve, one) slogan(one, “twelve”, three) slogan(one, four, twelve) slogan(twelve + “2”, four, twelve) slogan(“one”, “mouse”, four) main() Line 1: Line 2: Line 3: Line 4: Line 5: