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

logan m.

Divider

Questions asked

BEST MATCH

evin and Ella are married and will file a joint return. Ella is a U.S. citizen with a valid Social Security number. Kevin is a resident alien with an Individual Taxpayer Identification Number (ITIN). Ella worked in 2024 and earned wages of $38,500. Kevin worked part-time and earned wages of $22,000. The Hendersons have two children: Lewis, age 11, and Tami, age 19. The Hendersons provided the total support for their two children, who lived with them in the U.S. all year. Lewis and Tami are U.S. citizens and have valid Social Security numbers. Basic Scenario 4: Retest Questions Kevin has an ITIN, therefore the Hendersons cannot claim the Earned Income Tax Credit. a. True b. False

View Answer
divider
BEST MATCH

How many protons and neutrons are in an atom of Kr-84? Number of protons = Number of neutrons =

View Answer
divider
BEST MATCH

Draw the complete curved-arrow mechanism for the Williamson synthesis of anethole, using the simplest reagents you can. Be sure to list the reagents

View Answer
divider
BEST MATCH

Liberty offered an annuity that pays 7.5% compounded monthly. What equal monthly deposit should be made into this account in order to have $120,000 in 15 years?

View Answer
divider
BEST MATCH

1) Consider a tank containing 1 m³ of water at 20 °C. The tank is perfectly insulated. There are two copper rods, which each have one end in the water and the other in a reservoir at a different temperature. The first rod is 1 m long and 0.1 m in diameter, and its other end is in a reservoir of liquid nitrogen at 77 K. The second rod is 0.5 m long and 0.05 m in diameter, and its other end is connected to a reservoir at 120 °C. After some time the water in the tank freezes. What is the temperature of the ice in the tank when it finally reaches steady state? [$k_{cu} = 400 \text{ W m}^{-1} \text{K}^{-1}$] a) 0 °C b) -20 °C c) -50 °C d) - 70 °C e) - 90 °C 2) Suppose we use a laser to cut a disk from the centre of an aluminium plate that is at room temperature. Consider the size of the disk ($D_D$), the size of the plate ($D_P$) and the size of the hole ($D_H$) in the plate when they are cooled down in liquid nitrogen, so that their temperature decreases by 200°C. Which of the following is true? a) $D_D$ increases, $D_P$ decreases, $D_H$ decreases b) $D_D$ increases, $D_P$ decreases, $D_H$ increases c) $D_D$ decreases, $D_P$ decreases, $D_H$ decreases d) $D_D$ decreases, $D_P$ increases, $D_H$ decreases e) $D_D$ increases, $D_P$ increases, $D_H$ decreases 3) 1 kg of ice at 0 °C is put in a saucepan on the stove and heated until it starts boiling. If the power delivered by the stove is 4 kW, how long does it take to boil? a) 100 s b) 130 s c) 160 s d) 190 s e) 220 s

View Answer
divider
BEST MATCH

The following elementary gas-phase reaction PCl5(g) = PCl3(g)+Cl2(g), is said to be Select one: a. First-order with respect to PCl3 b. First-order with respect to PCl5 c. First-order with respect to Cl2 d. Second-order with respect to Cl2 & PCl3 Question 6 Not yet answered Marked out of 3.00 Flag question The derived design equation dCA/dt = rA, is for Select one: a. CSTR b. PFR c. Batch reactor d. PBR

View Answer
divider
BEST MATCH

(Show your work and explain it, label your circuits, show voltages and currents, how you find the answer.) The switch in the circuit has been open a long time before closing at t=0. Find $I_L(t)$, $v_c(t)$, $I_1(t)$, $I_2(t)$ for $t \ge 0$ 100 ? 1 + 30 mA + $I_L$ 20 mH $V_c$ 20V 100 ?F 25 ? ? a) Draw the circuit for t< 0 and find $I_1(0)$, $v_c(0)$, $I_1(0)$, $I_2(0)$ b) Draw the circuit for t -> ? and find $I_1(\infty)$, $v_c(\infty)$, $I_1(\infty)$, $I_2(\infty)$ (note: replace voltage sources by Short circuit (a line) and currents sources by open circuit) c) Draw the circuit for t>0 is the circuit RLC series or parallel? What is R, L, C Find Alpha Find Omega_0 = ?0 How is the response? find $I_1(t)$, $v_c(t)$, $I_1(t)$, $I_2(t)$ for $t \ge 0$

View Answer
divider
BEST MATCH

Find the area of the part of the surface y=2x"+2z"-7 that lies within the cylinder x"+z"=4 Find the volume of the solid below the surface f(x,y)=2xy over the region R on the xy-plane bounded by y=x, x=2, and x-axis For the integral ??² ??????² ????²??²??²??² dzdydx a) Convert the integral to cylindric cordinates b) Compute the integral by using its cylindrical cordinates from (a)

View Answer
divider
BEST MATCH

1. Give a recursive version of the following iterative code: void cubes (int n) { For(int i = 0; i < n; i++) System.out.print(i*i*i + ""); } 2. Write a java method for computing x<sup>n</sup> given the definition: x<sup>n</sup> = \begin{cases} 1, & \text{if } n = 0 \\ x \cdot x^{n-1}, & \text{if } n > 0 \end{cases} 3. Check recursively if a given string word is a palindrome. A string is a palindrome if the first character matches the last, the second character matches before the last, and so on. For example: ABDDCDDBA is a palindrome. 4. Write a java program to read a sentence from keyboard. The sentence contains Alphabets and asterisk characters only. All characters are separated by a space. Every alphabet that is read is pushed into a stack The stack is then processed in the following way: - All elements are popped - While popping, if an asterisk is read then the next alphabet in the stack is popped and printed to console. Example: If the sentence contains: CRY*S*MTAA*TE Then the result shown on screen is: EASY 5. Write a java program (must have 3 methods + main, use the built-in linked list and stack in Java) to do: a. Method createList: Creates a Linked list of 10 elements. These elements are generated randomly between 1 and 100. b. Method printList: Prints the elements of the linked list. c. Method reverseList: Reverses the linked list using a stack. Call the printList again after reversing the list. 6. Write a method to reverse the contents of a Queue (Q1) into a new Queue (Q2), using a Stack in between. Call the method reverseQueue. Test the method in main().

View Answer
divider
BEST MATCH

Draw the force diagram for this situation first. M. and Dark-side are sledding in Poland. Inferno pushes Nergal's 5kg sled through some loosely packed snow with a rightward force of force of 25N. If the acceleration of the sled is 4 m/s/s, then what is the force of friction and the coefficient of friction between the sled and the snow? Your final answers should be Ff=\_N and mu=\_ Type those answers in this box. Do your work and force diagram on a seprate sheet of paper. Take a picture of your work and upload it to the \"Chapter 2 Test Work\" folder on google classroom.

View Answer
divider