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

alexandra c.

Divider

Questions asked

BEST MATCH

Which of the following is true when accounting for the foreign currency transactions of a U.S. company? Multiple choice question. It can report its foreign currency transactions either in U.S. dollars or in the local currency if the amount involved is less than $2 million. The transactions denominated in other currencies must be restated to their U.S. dollar equivalents. As per U.S. GAAP, a U.S. company can report its foreign currency transactions either in U.S. dollars or in the local currency. The transactions denominated in foreign currencies are included in the financial statements in the foreign currencies.

View Answer
divider
BEST MATCH

HW8 Problem 8–17 with added parts (of text book) 10 points A tension test was performed on a magnesium alloy specimen having a diameter 0.5 in. and gauge length 2 in. The resulting stress-strain diagram is shown in the figure. a) Would this material be considered ductile or brittle? b) Determine the elastic modulus, E c) What is the strain and axial deformation, 8, when s = 10 ksi? (If linear region use σ=Εε) d) Determine an approximate yield stress using the 0.2% offset method e) If a load P on the specimen develops a strain of e = 0.001 in./in., determine the approximate length of the specimen between gage point when the load is removed f) If a load P on the specimen develops a strain of e = 0.004 in./in., determine the approximate length of the specimen between gage points when the load is removed g) Assume n = 0.35, determine the lateral strain of the material when s = 10 ksi. What is the new diameter during loading? h) Assume n = 0.35, what is an approximate value for the shear modulus, G, of this material?

View Answer
divider
BEST MATCH

Does sucrose give a positive benedict test? Why or why not

View Answer
divider
BEST MATCH

What is social disorganization theory and how does it explain crime in urban areas? Focus on making sure you understand the main elements of the theory. What are its strengths and weaknesses?

View Answer
divider
BEST MATCH

Asacetylene gas is often used in welding torches because of the very high heat produced when it reacts with oxygen gas producing carbon dioxide, gas and water vapor. Calculate the moles of oxygen needed to produce 1.4 moles of water

View Answer
divider
BEST MATCH

Jen is a 22-year-old female. Her parents are Japanese Americans who immigrated to the US when Jen was 3 years old. Now American citizens residing in the San Francisco Bay area. Jen was a 2nd-year medical student at the University of Arizona. Recently, Jen has begun to contemplate her place in the world. She dropped out of medical school and is now looking for a job. She had a significant other who lived with her but they have recently broken up and her former partner has moved out of the home they shared. Jen has not mentioned her recent choices and life changes with her parents or anyone back at home. Jen has lost interest in most of her usual hobbies and has not seen her college friends in over 3 months. In addition to the prompts given in the template, please make sure you cover these questions below

View Answer
divider
BEST MATCH

A lab technician makes three successive 5.0mL-to-50.0mL dilutions (like was described in your lab procedure) of a 0.970M stock solution of copper(II) chloride, then adds 3.00mL to a test tube initially containing 7.00mL of an ammonia solution. Draw a simple diagram showing all dilutions (starting with the 0.970M stock solution). What is the molarity of copper(II) ions in the test tube? 3) A lab technician makes three successive 5.0 mL-to-50.0 mL dilutionslike was described in your lab procedure) of a 0.970 M stock solution of copper(I1) chloride,then adds 3.00 mL to a test tube initially containing 7.00 mL of an ammonia solution. Draw a simple diagram showing all dilutions (starting with the 0.970 M stock solution).What is the molarity of copper(II) ions in the test tube?

View Answer
divider
BEST MATCH

Therapy for mental disorders generally involves two approaches: medical treatment and Group of answer choices hospitalization. medication. psychotherapy. institutionalization.

View Answer
divider
BEST MATCH

I need the code and testbench for the given design with an elaborate explanation of an instruction and its operand. The meaning of the syntax RX [RY] is that the contents of register RY are loaded into register RX. The mv (move) instruction allows data to be copied from one register to another. For the mvi (move immediate) instruction, the expression RX D indicates that the 16-bit constant D is loaded into register RX. Table 1. Instructions performed in the processor. Each instruction can be encoded and stored in the IR register using the 9-bit format IIIXXXYYY, where III represents the instruction, XXX gives the RX register, and YYY gives the RY register. Although only two bits are needed to encode our four instructions, we are using three bits because other instructions will be added to the processor in later parts of this exercise. Hence IR has to be connected to nine bits of the 16-bit DIN input, as indicated in Figure 1. For the mvi instruction, the YYY field has no meaning, and the immediate data #D has to be supplied on the 16-bit DIN input after the mvi instruction word is stored into IR. Some instructions, such as an addition or subtraction, take more than one clock cycle to complete because multiple transfers have to be performed across the bus. The finite state machine in the control unit "steps through" such instructions, asserting the control signals needed in successive clock cycles until the instruction has completed. The processor starts executing the instruction on the DIN input when the Run signal is asserted, and the processor asserts the Done output when the instruction is finished. Table 2 indicates the control signals that can be asserted in each time step to implement the instructions in Table 1. Note that the only control signal asserted in time step 0 is IR in, so this time step is not shown in the table. Table 2. Control signals asserted in each instruction/time step. Perform the following task: Write RTL code using Verilog HDL and Perform simulation by writing testbench. (Use VCS simulator) Apply suitable timing, power, and area constraints and perform logic synthesis targeting SAED32nm Technology Library Perform Timing Analysis using Prime Time Analyzer and Optimize the netlist for timing. of an instruction and its operand. The meaning of the syntax RX [RY] is that the contents of register RY are loaded into register RX. The mv (move) instruction allows data to be copied from one register to another. For the mvi (move immediate) instruction, the expression RX D indicates that the 16-bit constant D is loaded into register RX. Figure 1 shows a digital system that contains a number of 16-bit registers, a multiplexer, an adder/subtracter unit, and a control unit (finite state machine). Data is input to this system via the 16-bit DIN input. This data can be loaded through the 16-bit wide multiplexer into the various registers, such as R0, ..., R7. The multiplexer also allows data to be transferred from one register to another. The multiplexer's output wires are called a bus in the figure because this term is often used for wiring that allows data to be transferred from one location in a system to another. Addition or subtraction is performed by using the multiplexer to first place one 16-bit number onto the bus wires and loading this number into register 4. Once this is done, a second 16-bit number is placed onto the bus, the adder/subtracter unit performs the required operation, and the result is loaded into register G. The data in G can then be transferred to one of the other registers as required. Operation Function performed mv Rx, Ry Rx [Ry] mvi RxD Rx D add Rx, Ry RxRx+Ry sub Rx, Ry Rx[Rx-[Ry] Table 1. Instructions performed in the processor. Each instruction can be encoded and stored in the IR register using the 9-bit format IIIXXXYYY, where III represents the instruction, XXX gives the RX register, and YYY gives the RY register. Although only two bits are needed to encode our four instructions, we are using three bits because other instructions will be added to the processor in later parts of this exercise. Hence IR has to be connected to nine bits of the 16-bit DIN input, as indicated in Figure 1. For the mvi instruction, the YYY field has no meaning, and the immediate data #D has to be supplied on the 16-bit DIN input after the mvi instruction word is stored into IR. Some instructions, such as an addition or subtraction, take more than one clock cycle to complete because multiple transfers have to be performed across the bus. The finite state machine in the control unit steps through such instructions, asserting the control signals needed in successive clock cycles until the instruction has completed. The processor starts executing the instruction on the DIN input when the Run signal is asserted, and the processor asserts the Done output when the instruction is finished. Table 2 indicates the control signals that can be asserted in each time step to implement the instructions in Table 1. Note that the only control signal asserted in time step 0 is IR in, so this time step is not shown in the table. DIN T1 T2 T3 (mv): b RYout, RXs, Done (mvi): I DINout, RXn Done (add): RXoub Ain RYub Gin Gout, R.Xin. Done (sub): I3 RXout, Ain RYout, Gin, Gout, RX'm, AddSub Done unit FSM Table 2. Control signals asserted in each instruction/time step. Figure 1: A digital system. The system can perform different operations in each clock cycle, as governed by the control unit. This unit determines when particular data is placed onto the bus wires and it controls which of the registers is to be loaded with this data. For example, if the control unit asserts the signals Roor and At, then the multiplexer will place Perform the following task Write RTL code using Verilog HDL and Perform simulation by writing testbench. (Use VCS simulator) A system like this is often called a processor. It executes operations specified in the form of instructions. Table 1 lists the instructions that the processor has to support for this exercise. The left column shows the name 2. Apply suitable timing, power, and area constraints and perform logic synthesis targeting SAED32nm Technology Library 3. Perform Timing Analysis using Prime Time Analyzer and Optimize the netlist for timing.

View Answer
divider
BEST MATCH

4. (a) Perform a scenario analysis Scenario 1. Base Case - Cost of capital 10%, Procedures per day 20, net patient revenue per procedure $1,000 and Build/equipment salvage value $5,000,000 NPV IRR MIRR Payback 1,200,857 12.9% 11.5% 4.1 Scenario 2. Cost of capital 14%, Procedures per day 25, net patient revenue per procedure $1,200 and Build/equipment salvage value $6,000,000 NPV IRR MIRR Payback Scenario 3. Cost of capital 12%, Procedures per day 15, net patient revenue per procedure $800 and Build/equipment salvage value $4,000,000 NPV IRR MIRR Payback

View Answer
divider