Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
danielle johnson

danielle j.

Divider

Questions asked

BEST MATCH

Express the confidence interval (379.7, 649.3) in the form of $\bar{x} \pm ME$. $\bar{x} \pm ME = \boxed{\phantom{000.0}} \pm \boxed{\phantom{000.0}}$

View Answer
divider
BEST MATCH

Use the simplex method to solve. Minimize w = 6y1 + y2 subject to: 3y1 + 5y2 ? 15 3y1 + y2 ? 19 with y1 ? 0, y2 ? 0 The minimum is w = \boxed{} when y1 = \boxed{} and y2 = \boxed{} (Simplify your answers.)

View Answer
divider
BEST MATCH

what do you believe is the most important budget issue that social workers should understand? Why do you believe this (not personally or professionally)?

View Answer
divider
BEST MATCH

33. The image to the right is a cross section through part of the small intestine. a. What part of the small intestine does this image represent (duodenum, jejunum, or ileum)? b. What characteristic(s) were used in determining which part of the small intestine this sample was taken from?

View Answer
divider
BEST MATCH

Please help using R to answer this question. The question is to write a simpler version of the given code without loops that computes the same output without storing it to an object. The output should be identical to the output object shown. HINT: THE COMPUTATION CAN BE DONE WITH A SINGLE COMMAND The iris data in the datasets package is a famous data set that gives the measurements (in centimeters) of the variables sepal length, sepal width, petal length, and petal width, respectively, for 50 flowers from each of 3 species of iris. The species are Iris setosa, versicolor, and virginica. Consider the following working code and output: > str(iris) 'data.frame': 150 obs. of 5 variables: $ Sepal.Length: num 5.1 4.9 4.7 4.6 5.0 $ Sepal.Width : num 3.5 3.0 3.2 3.1 3.6 $ Petal.Length: num 1.4 1.4 1.3 1.5 1.4 $ Petal.Width : num 0.2 0.2 0.2 0.2 0.2 0.4 0.3 0.2 $ Species : Factor w/ 3 levels "setosa","versicolor","virginica" numeric_vars <- colnames(iris)[1:4] > numeric_vars output <- matrix(NA, nrow = nlevels(iris$Species), ncol = length(numeric_vars)) rownames(output) <- levels(iris$Species) colnames(output) <- numeric_vars for (i in seq_along(levels(iris$Species))) { for (j in seq_along(numeric_vars)) { output[i, j] <- mean(iris[iris$Species == levels(iris$Species)[i], numeric_vars[j]]) } } > output Sepal.Length Sepal.Width Petal.Length Petal.Width setosa 5.006 3.428 1.462 0.246 versicolor 5.936 2.770 4.260 1.326 virginica 6.588 2.974 5.552 2.026

View Answer
divider
BEST MATCH

Fungal infections targeting the keratinized layers of the skin are described as: ? cutaneous ? subcutaneous ? systemic ? opportunistic

View Answer
divider
BEST MATCH

Find the slope of the line through the given points: (-2, 5), (2, 1)

View Answer
divider
BEST MATCH

In each case determine k so that the line is parallel to the line 4x - 2y + 39 = 0. a. 5x + ky = 20 c. y = kx + 2 b. kx - 4y - 16 = 0 d. x = ky + 2 a. What value of k will make 5x + ky = 20 parallel to 4x - 2y + 39 = 0? k = (Simplify your answer. Type an integer or a fraction.)

View Answer
divider
BEST MATCH

2. If-Statement Execution Flow (40 points) Draw the flow chart for if-statement in one of our demo examples. This is the if-statement: if age < 2: print("toddler") else: if age < 14: print("child") else: if age < 18: print("teenager") else: print("adult") You could draw by hand on paper then take a picture of it. Or you could use any drawing tool or software.

View Answer
divider
BEST MATCH

Knott's Industries manufactures standard and super premium backyard swing sets. Currently it has four identical swing-set making machines, which are operated 225 days per year and 8 hours each day. A capacity cushion of 20 percent is desired. The following information is also known: \begin{tabular}{|l|c|c|} \hline & Standard Model & Super Premium Model \\ \hline Annual Demand & 20,000 & 10,000 \\ Standard Processing Time & 10 min & 17 min \\ Average Lot Size & 45 & 30 \\ Standard Setup Time per Lot & 30 min & 45 min \\ \hline \end{tabular} a. Does Knott's have sufficient capacity to meet annual demand? Knott's \boxed{ } have sufficient capacity to meet annual demand because \boxed{ } machines are needed. (Enter your response rounded up to the next whole number) b. If Knott's was able to reduce the setup time for the Super Premium Model from 45 minutes to 30 minutes, would there be enough current capacity to produce 20,000 units of each type of swing set? If Knott's was able to reduce the setup time for the Super Premium Model from 45 minutes to 30 minutes, there \boxed{ } be enough capacity to produce 20,000 units of each type of swing set because \boxed{ }

View Answer
divider