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

amy w.

Divider

Questions asked

BEST MATCH

Growth mindset includes the belief that intelligence can be developed. O True O False

View Answer
divider
BEST MATCH

Write a balanced equation for the reaction of iodine with beryllium. Identify all of the phases in your answer.

View Answer
divider
BEST MATCH

In this assignment, you are asked to write a program that gets a series of string chars separated by space and followed by EOF from the user through standard input, alphabetically sorts them using bucket sort, and prints the sorted strings out on the console. Bucket Sort Bucket sort, or bin sort, is a sorting algorithm that works by distributing the elements into a number of buckets. Each bucket is sorted individually. To sort each bucket in this assignment, you will use the insertion sort algorithm. Also, to compare strings with one another, you need to use the function strcasecmp from the string.h library as this sorting machine is not case-sensitive. Figure 1: Example of bucket sort for sorting numbers 29, 25, 3, 49, 9, 37, 21, 43. Numbers are distributed among bins (left image). Then, elements are sorted within each bin (right image). Bucket Sort's Data Structure In order to implement the bucket sort algorithm for strings, you need to have an array of buckets such that the bucket is a C structure defined in the following way: struct bucket{ char* min_word; struct node* head; };

View Answer
divider
BEST MATCH

Find the slope, the $y$-intercept, and the $x$-intercept of the line $-(7x + 3y) = -8$. slope: y-intercept: x-intercept:

View Answer
divider
BEST MATCH

What causes side loading in cylinders? How can this be minimised?

View Answer
divider
BEST MATCH

2. Chapter 10-11: Process, Structure and Property Relationship (10) An AISI 1080 steel part was processed per heat treatment specified in column 1 of the Table 1. Identify the microstructure and crystal structure, and compare the hardness of the part after the heat treatment (fill the Table 1). Table 1. Heat Treatment, Microstructure and Property Relationship Heat Treatment Microstructure Crystal Structure Relative Hardness (Harder or softer) AISI 1080 steel part was heated at 850 C, and held there until it was fully austenitized followed by water quenching AISI 1080 steel part was heated at 850 C, and held there until it was fully austenitized followed by furnace cooling

View Answer
divider
BEST MATCH

Problem 1: Consider the following model for an oscillating system. k =360 N/m m=10 kg x The initial position is 0 and the initial velocity is 2m/s. (a) Find $x(t)$ using Laplace transforms using the tables in the book (you can use ilaplace in MATLAB to check your answer). (b) Check that your solution matches your initial conditions. (c) Check by hand that your solution solves the original equation of motion by plugging x and $\dot{x}$ back into the equation of motion and showing that you get 0. (d) Plot $x(t)$ in MATLAB for 3 seconds.

View Answer
divider
BEST MATCH

7. A solenoid 2.50 cm in diameter and 30.0 cm long has 300 turns and carries 12.0 A. (a) Calculate the flux through the surface of a disk of radius 5.00 cm that is positioned perpendicular to and centered on the axis of the solenoid. (b) If the solenoid current changes according to the expression $I = I_0 (1 - e^{-\alpha t})$. Find the induced emf in the loop in t = 6.0 s. (b) show the direction of the induced current in the loop. (Assume $I_0 = 5.6$ A; $\alpha = 0.16$ 1/s)

View Answer
divider
BEST MATCH

Chapter 11 1.MC.11.01 Calculating Transfer Price 2.MC.11.02 Burt Inc. has a number of divisions, including the Indian Division, a producer of liquid pumps, and Maple Division, a manufacturer of boat engines. 3.MC.11.03 Indian Division produces the h20-model pump that can be used by Maple Division in the production of motors that regulate the raising and lowering of the boat engine's stern drive unit. The market price of the h20-model is $720, and the full cost of the h20-model is $540. 5.MC.11.09 6.MC.11.11 Required: 7.MC.11.12 1. If Burt has a transfer pricing policy that requires transfer at full cost, what will the transfer price be? 8.BE.11.16A 9.BE.11.18A Do you suppose that Indian and Maple divisions will choose to transfer at that price? 10.EX11.25 Maple Division Indian Division 11.PR.11.48 2. If Burt has a transfer pricing policy that requires transfer at market price, what would the transfer price be? 12.EX.11.35.ALGO 13.EX11.33 Do you suppose that Indian and Maple divisions would choose to transfer at that price? Maple Division Indian Division 3. Now suppose that Burt allows negotiated transfer pricing and that Indian Division can avoid $120 of selling expense by selling to Maple Division. Which division sets the minimum transfer price? What is the minimum transfer price? Which division sets the maximum transfer price? What is the maximum transfer price? Do you suppose that Indian and Maple divisions would choose to transfer somewhere in the bargaining range?

View Answer
divider
BEST MATCH

What problem can be caused by a weak first stage in an IV regression? (a) Statistical inference based on t-stats is misleading. (b) The IV estimates are biased. (c) The exclusion restriction is violated. (d) The order condition is violated.

View Answer
divider