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

michaela r.

Divider

Questions asked

BEST MATCH

Which of the following would be used with differential amplifiers to minimize interference pickup from electrostatic fields? Question 13 options: A) Twisted-pair shielded cable B) Unshielded copper wire C) Single-conductor shielded audio cable D) Triaxial cable

View Answer
divider
BEST MATCH

Question 1 4 pts Provide four ways in which the Data Vault Approach differs from the Information Factory (Inmon) Approach for designing data warehouses.

View Answer
divider
BEST MATCH

QUESTION 3 In "East, West, and World Theatre" by Steve Tillis, which example does the author provide to illustrate Western theatre? A. Greek tragedy B. Noh theatre C. Kabuki D. Chinese opera

View Answer
divider
BEST MATCH

Texts: Part II: Programming Part 1. (20 points) Write a logarithmic Java method with the following signature that gets two equal-sized sorted arrays of integers and returns the median of the union of the two lists. The median of a sorted list with an even length is defined as the average of the two middle elements in the list. public static double findMedian(int[] list1, int[] list2) Ex: Given list1: [3, 5, 8, 9], list2: [2, 6, 10, 12], the median is the average of 6 and 8, which is (6+8)/2 = 7. 2. (30 points) Given the DisjointSet class, write a Java method that receives the following four input parameters and outputs a Boolean determining whether you can go from the source island to the destination island by using zero or more bridges: String[] names of islands HashMap<String, List<String>> bridges that represent the bridges connecting each island to other islands String source island String destination island 3. (30 points) Using the implementation of topological sort, write a Java method that gets the name of the prerequisites.txt file and prints a sequence of courses that can be taken by a student in order to graduate without violating any prerequisite requirements.

View Answer
divider
BEST MATCH

Texts: Below are examples of survey questions. Using information provided in this lesson, identify the problem associated with the wording of each question. Then, as far as you can, reframe the question to one that has better wording. You may refer to slides from the previous lecture, Questionnaire Design: Biases to Avoid. A) A journalist working on the article titled Leading Causes of Heart Diseases in New York Patients includes the following question in her survey: What particular cardiovascular disease are you ailing from? B) An ice cream marketing firm asks respondents, “What is your favorite ice cream flavor, and why?” C) A security service firm has the following question in its survey: Most research experts agree that the crime rate in this city has gone up. Don’t you agree? D) Should taxes be increased over the next two years? a. Yes b. No E) Advocates against the government’s giving aid have the following questionnaire sent to sample citizens: Considering the insanely huge amounts of dollars that are lost to corruption, do you honestly believe that the government should continue giving more aid to developing nations? F) An economist includes the following question in his survey: Are you in better shape this month?

View Answer
divider
BEST MATCH

A tissue-engineered heart valve is mechanically loaded in a physiological salt solution (pressure = 0 MPa). The response of the fibroblasts depends on the mechanical load that the tissue senses. For this reason, knowledge of the exact stress history is vital. A strain of 4% is imposed in direction 1 in a ramp of 2 ms duration, whereafter the strain is maintained constant in that direction. Immediately after the ramp, the stress in the 1-direction is measured: 3 MPa. After that time, the stress decreases progressively in direction 1. After 8 hours, the stress stabilizes and the strain is measured in the 2 and 3 directions. Both strains equal -1% relative to the unloaded state. Assume that the tissue is isotropic and linear elastic. Infinitesimal deformation theory applies, and the solid and fluid are both incompressible. A) Calculate Young's modulus E using the Poisson's ratio of the tissue-engineered sample. B) Calculate the total normal stress in the 1-direction at t = 6h. C) Calculate the total normal stress in the 3-direction at t = 2 ms. D) Calculate the effective stress in the 2-direction at t = 2 ms. E) Calculate the total normal stress in the 2-direction at t = 6h.

View Answer
divider
BEST MATCH

Compute the matrix exponential $exp(At)$ for the following matrices. You may express the answer as the product of three matrices. You may use MATLAB for computing eigenvalues, eigenvectors and generalized eigenvectors. $\begin{pmatrix} -1 & -2 & 0 \\ 1 & -4 & 0 \\ 1 & 1 & 5 \end{pmatrix}$ $\begin{pmatrix} -1 & -5 & 1 \\ 2 & -3 & 1 \\ 0 & 0 & 5 \end{pmatrix}$

View Answer
divider
BEST MATCH

Assuming the_list is a list/array, under what conditions would the following statement be true? the_list[0] == the_list[-1]

View Answer
divider
BEST MATCH

Write a function `has_more_zs` to determine which of two strings contains more instances of the letter "z". It should take as parameters two string variables and return the argument which has more occurrences of the letter "z". If neither phrase contains the letter "z", it should return: "Neither string contains the letter z." If the phrases contain the same number of "z"s, it should return: "The strings have the same number of Zs." The function must work for both capital and lowercase "z"s. Create a variable `more_zs` by passing two strings of your choice to your `has_more_zs` function. R language I'm just confused about what the problems are with my codes. ```R has_more_zs <- function(a, b) { a <- tolower(a) b <- tolower(b) count_a_zs <- str_count(a, "z") count_b_zs <- str_count(b, "z") if (is.na(count_a_zs) && is.na(count_b_zs)) { print("Neither string contains the letter z.") } else if (count_a_zs == count_b_zs) { print("The strings have the same number of Zs.") } else if (count_a_zs > count_b_zs) { return(a) } else { return(b) } } a <- "zigzag" b <- "zzz" more_zs <- has_more_zs(a, b) ```

View Answer
divider
BEST MATCH

2. For $w(t)$ taking values in $C$, define a new curve by $z(s) = w(t)^2$, $\frac{ds}{dt} = |w(t)|^2$. Show that if $w''(t) = -w(t)$, then $z''(s) = -4E \frac{z(s)}{|z(s)|^3}$, so $z(s)$ solves the Kepler problem.

View Answer
divider