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

isaac c.

Divider

Questions asked

BEST MATCH

Of the following, which hypothesis would NOT be appropriate given the concept of testability: Personality traits can be influenced by genetics. Invisible forces influence our behavior every day. Behavior is influenced by the rewards that follow the behavior. Children who view aggression are more likely to act in an aggressive manner.

View Answer
divider
BEST MATCH

According to a study of US homes, the mean indoor temperature at night in winter is 68. 3◦𝐹. You think the information is incorrect, so you randomly select 25 homes and find 𝑥 ar{x} = 67. 2◦𝐹 and from past studies sigma = 3. 5◦𝐹. The population is normally distributed. Is there enough evidence to support your claim at alpha =. 05?

View Answer
divider
BEST MATCH

PROBLEM #3 (25 points) A favorite spot of family pets on cold days is in front of a fireplace. Assume a fireplace and a dog can be approximated as perpendicular rectangular surfaces, where the fireplace is 1.6 m tall and 1.2 m wide, and the dog is 1.2 m wide and 0.48 m in depth. The fireplace surface is a black body with a temperature of 550 K. The dog's fur is a diffuse and gray surface, with an emissivity of 0.4 and a temperature of 310 K. (a) (5 points) Sketch the scenario showing the dimensions and orientation of the surfaces and the direction of heat transfer. (b) (20 points) What is the rate of net radiation heat transfer from the fireplace to the dog?

View Answer
divider
BEST MATCH

Use the Laws of Logarithms to expand the expression completely. Logarithms of products, quotients, radicals or powers must not \ln\left(\frac{z^3e^8}{\sqrt{x}y^2}\right)

View Answer
divider
BEST MATCH

Read the following extract and answer ALL the questions in this section. A data file is any file that you store on your computer. By this definition, a word processing document, a spread sheet, an image and a text file can all be described as data files, simply because they store data; for example, the word processor document and the text file will store text, and the spread sheet will typically store facts and figures. When it comes to storing data from your applications, you may use data files. Data files are essentially ordinary text files which store data in ways which make it a little easy for your application to retrieve and manipulate. Often you will want to store data permanently on a storage device in such a way that the data is not lost when the program exits. Source: Informatics 1B Module Guide Question 1 (20 Marks) 1.1 Explain how a sequential file works. (5 marks) 1.2 Elaborate on the importance of sequential files. (5 marks) 1.3 Provide three uses of sequential files. (6 marks) 1.4 Explain the differences between indexed file and direct access file organization. (4 marks)

View Answer
divider
BEST MATCH

Consider the following computation loop $X_{i+1} = aX_i - bY_i$ which is the inner loop in a numerical algorithmic process. For numerical convergence, this loop is supposed to run for a large number of iterations. The constants $a$ and $b$ are initialized in float registers. Loop: LD F0,0(R1) // Load MULTF F0,F0,F2 // Multiply LD F4,0(R2) // Load MULTF F4,F4,F6 // Multiply SUBF F0,F0,F4 // Subtract SD 0(R1),F0 // Store SUBI R1,R1,8 // Decrement SUBI R2,R2,8 // Decrement BNEQZ R1,Loop // Branch not equal Assume the pipeline data dependent latencies between instructions (WRITE to READ operands) are given by the following Table. For example, LD F0,0(R1) and MULTF F0,F0,F2 have a RAW dependency with latency (load slot) 1 slot. Also, the machine uses float arithmetic units (ADDF and MULTF) which are pipelined and embedded in the instruction pipeline. You may consider 4-stage float pipes. Furthermore, delayed branching is available. WRITE Instruction READ Instruction 1 Latency in Cycles FP ALU OP Another FP ALU OP 3 FP ALU OP store double 2 Load double FP ALU OP 1 Load double Store double 0 a) Unroll the above loop as many times as necessary to schedule it without any delays, collapsing the loop overhead instructions. b) Briefly show the scheduling of the entire loop iterations. c) Comment if there are other unrollings feasible.

View Answer
divider
BEST MATCH

The critical values of $f(x) = 4x^3 - 48x + 24$ are $x = -2$ and $x = 2$. Use the first derivative test to determine which of the critical values correspond to a local minimum. A. $x = 2$ and $x = -2$ B. $x = -2$ C. neither $x = 2$ nor $x = -2$ correspond to a local minimum D. $x = 2$

View Answer
divider
BEST MATCH

2. The rope extends from point B through a metal loop attached to the wall at A to point C. The rope exerts forces \(F_{AB}\) and \(F_{AC}\) on the loop at A each with a magnitude of 200 lb. What is the Cartesian formulation of the total force \(F = F_{AB} + F_{AC}\) and the magnitude of the total force exerted on the loop by the rope? (12 points)

View Answer
divider
BEST MATCH

Write a function my_count(lst, val) that takes a list of integers, lst, and an integer, val, and returns the number of times that val occurs in lst. If val does not appear in lst, the function should return 0. Don't make a call to the list method count() in your function. Instead, you should think about how the count method might be implemented and how to recreate that functionality. The function signature is given below: def my_count(lst,val): #sig: list (int), int -> int For example, a call to my_count([7,2,1,3,7,9], 7) would return 2 and a call to my_count([4,6,1,2], 3) would return 0.

View Answer
divider
BEST MATCH

(b) Studies have shown that Australians spend 1 hour on average per day using their mobile phones. Considering that smaller smart phones consumes 5 W when they are operating and that people re- charge daily, answer the following: (2+2+2+2+2=10) (i) What is the minimum capacity of the lithium ion battery required to be used within a small smart phone? (ii) Assuming an 80% retention of specific cell capacity, what would be the total mass of the electrode materials required for use in such a device? (iii) Given the battery capacity, what would be the charging current in mA for a 10C, 1C and 0.5C rate? (iv) Comment on why would one ideally want to charge at a 0.5C rate vs 10C? (v) Comment on why it is critical that a charger rated for this particular battery is used when re- charging?

View Answer
divider