Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
jose maria carretero

jose maria c.

Divider

Questions asked

BEST MATCH

Which was the minimum capital requirement for market risk in the 1996 BIS Amendment? A. 1-day VaR with a 99% confidence level B. At least 3 times 7-day VaR with a 97% confidence level C. At least 2 times 5-day VaR with a 95% confidence level D. At least 3 times the 10-day VaR with a 99% confidence level

View Answer
divider
BEST MATCH

How do you apply statistics in your personal or professional environments?

View Answer
divider
BEST MATCH

Does there exist a function f such that f(0) = -5, f(2) = 8, and f'(x) ≤ 3 for all x? Yes

View Answer
divider
BEST MATCH

What is the instantaneous rate of change of y=(1)/(x) at x=2? (-1)/(2) (-1)/(3) none of these (-1)/(4) -1

View Answer
divider
BEST MATCH

Normal glucose and protein levels in a sample of CSF from a person with a severe headache and nuchal rigidity likely has this type of meningitis.

View Answer
divider
BEST MATCH

4. Write a C program that prompts the user for coordinates of two 3-D points ($x_1, y_1, z_1$) and ($x_2, y_2, z_2$) and displays the distance between them using the following formula. (20 points) Distance = $\sqrt{(x_1 - x_2)^2 + (y_1 - y_2)^2 + (z_1 - z_2)^2}$ Note that the coordinate values should be declared as int. The distance calculation should be rounded to 2 decimal places. 5. The mass of a single molecule of water is about $3 \times 10^{-23}$ grams. A quart of water is about 950 grams. Write a program that requests the amount of water in quarts, and displays the number of water molecules in that amount. (25 points) a. Request the amount of water in quarts. (6 points) b. Convert that amount of water to grams. (5 points) c. Calculate the number of water molecules in that many grams of water. (5 points) d. Display the results in scientific notation. (6 points) Note: The conversion factors should be defined as constant macros. (3 points)

View Answer
divider
BEST MATCH

R1 1? Ix 3A +5V- +10V- R2 2? 2A

View Answer
divider
BEST MATCH

Assuming you have the following classes. class Student { private: int SID; //student Identifier string Fname; // Student First Name string Lname; // Student Last Name public: void setSID(int id) { SID = id; } void setFname(string name) { Fname = name; } void setLname(string name) { Lname = name; } void print() { cout << "Student Data:" << endl; cout << SID << "." << Fname << " " << Lname << endl; } }; class Teacher { private: int ID;// Teacher ID string FirstN; // Teacher First Name string LastN; // Teacher Last Name int numStd; // Number of student that Teacher has Student *ptr; // Pointer of Student data type public: Teacher(int s, string f, string l, int n); void print() const; }; A) Write the implementation of Teacher initializer Constructor (with parameters) and do the following: 1. Set the value of ID, FirstN, LastN, and numStd. 2. Build a dynamic array of size "numStd" using the pointer ptr. 3. Assign the value of FirstN of class Teacher to the member variable Lname of each Student in the array. B) Write the implementation of print function: that prints the ID, first name, the last name, and the number of his students, then prints the SID, first name, and the last name of all of his student C) Write the implementations of Destructor that deletes the dynamic array

View Answer
divider
BEST MATCH

In "A Proposal to Classify Happiness as a Psychiatric Disorder," Richard Bentall argues that happiness should be classified as a psychiatric disorder. Which of the following is NOT a reason that he gives for this classification? Happiness is associated with irrationality. Happiness is statistically abnormal. Happiness consists of a discrete cluster of symptoms. Happiness is negatively valued.

View Answer
divider
BEST MATCH

In rationalizing $\frac{z}{\sqrt{3}}$, what will you multiply to both numerator and denominator?

View Answer
divider