You are a nurse who has worked on your unit for several year…

You are a nurse who has worked on your unit for several years.  A fellow nurse who you have worked with a great deal has shown some recent changes in behavior which you are concerned about.  Which of the following details of this nurse’s behavior may lead you to think they may have developed a substance abuse problem? (Select all that apply)

You are caring for a 42-year-old patient, Maria, who present…

You are caring for a 42-year-old patient, Maria, who presents to the clinic with complaints of increasing fatigue, muscle weakness, dizziness when standing, unintentional weight loss, and darkening of the skin on her elbows and creases of her hands. She reports salt cravings and occasional nausea. Vital signs show BP 94/60, HR 102, and K⁺ 5.8 mEq/L. A morning cortisol level is low, and ACTH levels are elevated. The provider orders additional endocrine testing and an ACTH stimulation test.  Based on Maria’s presentation and initial labs, which diagnosis is most consistent with these findings?

Mr. Benson, a 68-year-old man, comes to the clinic with conc…

Mr. Benson, a 68-year-old man, comes to the clinic with concerns about urinary changes. The nurse explains the obstructive symptoms associated with benign prostatic hyperplasia (BPH). Which statement by the patient indicates that he understands these symptoms?  

Given the connection object conn, the following Connector/J…

Given the connection object conn, the following Connector/J code fragment prints the result of a query. What is XXX? Statement statement = conn.createStatement(); String sql = “SELECT ID, Name FROM Employee”; ResultSet result = statement.executeQuery(sql); while ( XXX ) { System.out.println( “Employee ID: ” + result.getInt(“ID”) + “Employee Name: ” + result.getString(“Name”)); }