Suppose you have this array: $people = array(    array(‘firs…

Suppose you have this array: $people = array(    array(‘first’ => ‘Fred’,    ‘last’ => ‘Flintstone’),    array(‘first’ => ‘Wilma’,   ‘last’ => ‘Flintstone’),    array(‘first’ => ‘Barney’,  ‘last’ => ‘Rubble’),    array(‘first’ => ‘Betty’,   ‘last’ => ‘Rubble’),    array(‘first’ => ‘Pebbles’, ‘last’ => ‘Flintstone’),    array(‘first’ => ‘Bam Bam’, ‘last’ => ‘Rubble’),); Write a loop goes through $people and outputs the full name of all the people with the last name Flintstone. Separate each name with a BR tag.

A 55-year-old female patient presents to the clinic for a we…

A 55-year-old female patient presents to the clinic for a wellness examination. The nurse practitioner observes during the history taking portion of the examination that the patient is obese and was a gymnast when she was a young girl into her teen years. Additionally, the patient has been most recently diagnosed with hypermobility syndrome. What is this patient at risk for?

Column Name Data Type Note food_id int This is t…

Column Name Data Type Note food_id int This is the primary key; auto generated by DB. name var_char(128)   price float   quantity int   Write the SQL for these for four items using the table above.  The name of the table is FOOD.  Write a SELECT that returns the primary key and the name of all the foods that have a price greater than $10.00. Write an UPDATE that finds the food with the food_id equal to 42, and sets its quantity to 5. Write an INSERT that inserts the following food item: name: Oreos price: $4.99 quantity: 15 Write a DELETE that removes all foods with a quantity of 0. Do not write any PHP in your answer. Each query is 5 points.