A 68-year-old patient is diagnosed with an M. chelonae infec…

A 68-year-old patient is diagnosed with an M. chelonae infection. She weighs 173 lbs. A provider has placed an order for amikacin 15 mg/kg IV once daily for 2 weeks. The amikacin is available in 2 mL vials containing 500mg. How many mL of the drug will you administer each day? If needed, round to the nearest tenth.

A web application includes the following code to handle sear…

A web application includes the following code to handle search queries: app.get(“/search”, (req, res) => {    const q = req.query.q;    res.send(`You searched for: ${q}`);}); The developer claims the page is safe because it “does not interact with the database.”What is the primary security risk in this endpoint?