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

margaret c.

Divider

Questions asked

BEST MATCH

Which term did Jean Piaget use to describe the process in which one state is changed into another?

View Answer
divider
BEST MATCH

Expressivity is the term used to describe the balanced genetic output from a hemizygous condition. True False

View Answer
divider
BEST MATCH

A good theory: provides a logical explanation for why people behave in a certain way describes how people behave includes all available research on a type of behavior prioritizes expert opinion over research findings.

View Answer
divider
BEST MATCH

Consider a computer system with a two-level cache hierarchy consisting of L1 (Level 1) and L2 (Level 2) caches. Both caches use a set-associative mapping. The system runs a program where its memory access pattern frequently accesses the same memory location multiple times within a short time frame. Which is the most suitable cache replacement policy for the L1 cache in the described scenario: Least Recently Used (LRU) First-In, First-Out (FIFO) Random Replacement Least Frequently Used (LFU)

View Answer
divider
BEST MATCH

... Lab 2.pdf ?:?? X University of Jeddah CCAI 412: Parallel Computing Lab #2 Multiprocessing in Python Multiprocessing vs Multithreading 1. In multiprocessing, each process has its own memory and there is no share memory while in multithreading, threads access same memory. 2. Creating process is heavyweight while thread is lightweight 3. Inter-process communication little complicated and we can do it by creating a shared data or queue Single Processor Single Thread Single Processor Multithread Multiprocessing Python Example 1: # importing the multiprocessing module import multiprocessing def print_cube(num): print("Cube of ", num, ":", num**3) def print_square(num): print("Square of ", num, ":", num**2) # creating processes p1 = multiprocessing.Process(target=print_square, args=(10,)) p2 = multiprocessing.Process(target=print_cube, args=(10,)) # starting process 1 p1.start() # starting process 2 p2.start() # wait until process 1 is finished p1.join() # wait until process 2 is finished p2.join()

View Answer
divider
BEST MATCH

Polar covalent bond A polar covalent bond is created when Multiple Choice atoms within the bond have an equal pull on the shared electron, and as a result the electron spends approximately equal amounts of time around the two atoms within the bond. electrons and protons are shared between atoms, creating a very strong bond which can be broken only with a strong input of energy. atoms within the bond do not have the same pull on the shared electron, and as a result the electron spends more time around one atom relative to the other atom within the bond. electrons are transferred from one atom to another, throwing off the balance between the two sides of the bond and making the bond very unstable.

View Answer
divider
BEST MATCH

Pr1. A metal rod having a mass m and length $l$ has resistance R. The rod hangs from two vertical metallic wires of length $l$ in a uniform vertical magnetic field B of a horseshoe magnet (see figure). The wires have negligible resistance. An AC voltage source is connected between the wires which provides a voltage $U(t) = U_0 \cos \omega t$, where $U_0$ and $\omega$ are constants. a) Show that for small angular displacements $\varphi$ the motion of the rod can be described by the equation $U(t) = \alpha \ddot{\varphi} + \beta \dot{\varphi} + \gamma \varphi$, and express the constants $\alpha$, $\beta$, $\gamma$ in terms of quantities m, l, B, R and the gravitational acceleration g. b) At a certain frequency $\omega = \omega_0$ the amplitude of the oscillations of the rod becomes large and the equation above does not describe the motion anymore. Estimate the frequency $\omega_0$.

View Answer
divider
BEST MATCH

Problem 2\ 15 points The shaft shown is subjected to a steady torque of 19000 lbf-in, in addition to a completely reversed bending moment of 8000 lbf-in. The shaft is made of AISI 1060 hot-rolled steel. The reliability goal is 90%. the temperature factor is considered as 1. The dimensions are given by: $d = 2$ in., $D = 2.1$ in., and $r = 0.1$ in. a) Determine the adjusted endurance limit. (5 points). b) Determine by two methods which phenomena occurs first: yield or fatigue using Modified Goodman criterion. (7 points) c) Calculate the fatigue life of the shaft according to the Modified Goodman criterion. (3 points).

View Answer
divider
BEST MATCH

Question 1 (20 marks) A load of 200kN is required to apply to the handle of the hammer in order to pull the ail as shown in Figure 1. The hammer is supported on a block at A. Calculate the tension T in the nail and the magnitude R of the force exerted by the hammer head on the block. Assume that the contact surface at A is sufficiently rough to prevent slipping.

View Answer
divider
BEST MATCH

A plane wave from a laser (λ = 633 nm) impinges normally on two pinholes in an opaque screen. The screen is parallel to the "x-y" plane and the direction cosines of the wave are (0,0,1). A fringe pattern forms on a distant wall 4 m away and the second bright fringe (m = -1) is 4 degrees from the central axis. a) Calculate the separation of the pinholes. b) A π/4 phase shifter is placed in one of the two pinholes. What is the new angle of the third bright band? c) The phase shifter is removed, and the illuminating plane wave is changed such that it has direction cosines (cos 88°, cos 90°, cos 2°). Find the spatial location of the +3 order.

View Answer
divider