Refer to this data set Left ventricular mass (LVM) refers to…
Refer to this data set Left ventricular mass (LVM) refers to the weight/mass of the muscle of the left ventricle of the heart (main pumping chamber). LVM is a key indicator of heart health. When the left ventricle has to work harder (like in high blood pressure or aortic valve disease), it can thicken and grow in mass. The data set for the next questions, has LVM data (in g) for patients categorized as normal, pre-hypertensive, hypertensive. Gender data was collected as well and body mass index (BMI) Categorize the variables presented in this data set; 1. Gender [a] 2. Blood pressure category ( 1= normal, 2= pre-hypertensive, 3= hypertensive) [b] 3. Age [c] 4. BMI in kg/m^2 [d] 5. If we categorize BMI as described below; what type of data does that represent? [e] Underweight: BMI is below the 5th percentile age, gender, and height. Healthy weight: BMI is equal to or greater than the 5th percentile and less than the 85th percentile for age, gender, and height. Overweight: BMI is at or above the 85th percentile but less than the 95th percentile for age, gender, and height. Obese: BMI is at or above the 95th percentile for age, gender, and height. 6. Left ventricular mass in gram [f]
Read DetailsWrite a function named stringCompare() that compares two inp…
Write a function named stringCompare() that compares two input strings. You CANNOT use the library and any functions associated with that. The function takes in the following parameters: string1 – a character array representing the first string string2 – a character array representing the second string The function will return an integer value based on these conditions: If string1 == string2 then return 0 If string1 > string2 then return 1 If string1 < string2 then return -1 Assume that all header files are included. Write only your function in the box below.
Read Details