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

john f.

Divider

Questions asked

BEST MATCH

Which of the following commands will prevent any aliased options to the ls command? %ls /ls `ls \ls

View Answer
divider
BEST MATCH

Consider a galvanic cell that uses the reaction 𝑍𝑛(𝑠) + 2 𝐻+(π‘Žπ‘ž) β‡Œ 𝐻2(𝑔) + 𝑍𝑛2+(π‘Žπ‘ž) Calculate the cell potential at 25 Β°C when [Zn2+] = 0.0010 M, PH2 = 0.10 atm, and pH = 0. 4. Use standard state reduction potentials to calculate the equilibrium constant for the reaction 4 𝐹𝑒2+(π‘Žπ‘ž) + 𝑂2(𝑔) + 4 𝐻+(π‘Žπ‘ž) β‡Œ 2 𝐻2𝑂(𝑙) + 4 𝐹𝑒3+(π‘Žπ‘ž)

View Answer
divider
BEST MATCH

Problem 1 Determine whether or not each of the following signals is periodic. If the signal is periodic, determine the fundamental period. (a) $x(t) = \sin(6t) + \cos(3t)$ (b) $x(t) = \sin^2(10\pi t + \frac{\pi}{3}) + \cos(4\pi t + \frac{\pi}{3}) + \sin(28\pi t - \frac{\pi}{6})$ Hint: $\sin^2(t) = \frac{1}{2} - \frac{1}{2}\cos(2t)$ (c) $x[n] = \cos(\frac{\pi}{5}n)\cos(\frac{\pi}{4}n)$ (d) $x[n] = 2\cos(\frac{\pi}{2}n) + \sin(\frac{\pi}{3}n) - 2\cos(\frac{\pi}{6}n + \frac{\pi}{6})$ Problem 2 Consider the periodic signal $x(t) = -2 + 3\cos(3t) - 2\sqrt{3}\sin(3t)\cos(9t) - 4\cos(9t + \frac{2\pi}{3})$ (a) Determine the fundamental frequency $\omega_0$ (b) Determine the complex exponential Fourier series coefficients. Hint: $\sin^2(t) = \frac{1}{2} - \frac{1}{2}\cos(2t)$ (c) Sketch the Fourier magnitude spectrum $|a_k|$ versus $k$ and the Fourier phase spectrum $\angle a_k$ versus $k$. Hint: $\sin(x)\sin(y) = \frac{1}{2}[\sin(x+y) + \sin(x-y)]$ Problem 3 Consider three periodic signals whose Fourier series representations are $x_1(t) = \frac{2j}{\pi}\sum_{k=-\infty}^{+\infty}\frac{1}{9 + j3k^2}e^{j6kt}$ $x_2(t) = \sum_{k=-\infty}^{+\infty}\cos(3k)e^{\frac{j3kt}{2}}$ $x_3(t) = \sum_{k=-\infty}^{+\infty}j\sin(4\pi k)e^{j6kt}$ Using the properties of the exponential Fourier series, determine if each signals are (a) Real or complex valued. (b) Even or odd function of time, or neither Problem 4 Determine the complex Fourier series coefficients of the following discrete-time signals (a) $x[n] = 1 - \cos(\frac{2\pi}{6}n)$ (b) $x[n] = \sin(\frac{2\pi}{6}n + \frac{\pi}{3})$

View Answer
divider
BEST MATCH

Is Socrates right when he says "the unexamined life is not worth living"?

View Answer
divider
BEST MATCH

In c++ don't send me examples please Struct node { int data node *next; } 2.1 Write the code to search for a value(25) in the linked list. Use the above header as the beginning of your linked list.

View Answer
divider
BEST MATCH

The matrix $A = \begin{bmatrix} -3 & 3\\ 5 & 5 \end{bmatrix}$ has a singular value decomposition $A = U\Sigma V^T$ where $U = \begin{bmatrix} 0 & -1\\ -1 & 0 \end{bmatrix}$ and $\Sigma = \begin{bmatrix} 5\sqrt{2} & 0\\ 0 & 3\sqrt{2} \end{bmatrix}$ and $V = \begin{bmatrix} -\frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}}\\ -\frac{1}{\sqrt{2}} & -\frac{1}{\sqrt{2}} \end{bmatrix}$ The 2,2 entry of the pseudoinverse $A^+$ is $(A^+)_{22} = 1/z$. What is z?

View Answer
divider
BEST MATCH

The Requirements for Heating a Building 1. Find $m_1$ and Q to meet the following requirements: $V_{dry\ air} = 1\ m^3/sec$ $T = 25^\circ C$ $P = 100\ kPa$ $\phi = 50\%$ Outside Conditions: $T = 10^\circ C$ $P = 100\ kPa$ $\phi = 50\%$

View Answer
divider
BEST MATCH

Prepare a reflective journal using Gibbs' Reflective Cycle Model on exemplary school leadership and management, focusing on cultivating a positive school culture and climate.

View Answer
divider
BEST MATCH

Alpha company received government grants equipment equal $400,000 on Jan. 1, 2020, the useful life of the equipment is 5 years. Prepare the required entry on Dec. 31, 2020 Equipment debit 400,000 and Government deferred revenue credit 400,000 None of the other answers. Government deferred revenue debit 80,000 and Government grant revenue credit 80,000 Depreciation expense debit 80,000 and Accumulated depreciation credit 80,000 On Jan. 1, 2020, Alpha Co. acquired a building to rent it for $300,000 cash, the useful life of the building is estimated 20 years, the fair value on Dec. 31, 2020 is 500,000. Prepare the required journal entry on Dec. 31, 2020 using the fair value model Building debit 100,000 and Gain to recognize the fair value 100,000 None of the other answers. Building debit 500,000 and Gain to recognize the fair value 500,000 Building debit 200,000 and Gain to recognize the fair value 200,000 Notes to the financial statements include the following except further information required by international standards. None of the other answers. measurement bases and other accounting policies. additional information relevant to an understanding of the financial statements.

View Answer
divider
BEST MATCH

Program in Java You have a set of integer lattice points in the plane that you are attempting to surround with a fence. Obviously, there are many ways to do this. However, only one of these ways has the shortest possible fence. Your program will determine which of the points the fence passes through and when given additional points whether they are inside or outside the fence. For example, given this set of points You would place the fence as shown below. This is usually referred to as finding the convex hull of a set of points. In class we will talk about a couple of possible ways to solve the problem: break it down into many smaller problems (determine whether a point is contained inside a triangle) and finding the upper boundry (sort the points left to right, keep a point if it is above the line between the point before and after) and the lower boundry. Requirements: Write a java program (1 or more java classes) that reads a set of integer lattice points and then accepts additional points and determines whether they are inside or outside the convex hull. There is a sample data file and a sample interaction below. You You must also have a file called status.txt which contains your name and a short (2-10 sentence) description of the status of your program. This file should be an ascii file. Though you may create it with MS Word (or notepad/wordpad/jGrasp/etc), you should be certain that it is a text file. A sample status.txt file is below. Details: Your program must compile with the command β€œjavac *.java”. In particular, this means that you should not place your classes into a package (or technically you should place them in the default package). Your program must run with the command β€œjava Driver1”. In particular, this means that you should have a file Driver1.java which includes a main method. Your program must read the set of points from a file called β€œinput.txt” which will be formatted as 2 points per line. Your program must accept user input as 2 integers per line and respond with Inside or Outside until the user enters ”quit”. In other words, match the sample below. DO NOT decide that it would be better if some other formatting was used. You should be using good programming style. At a minimum break the project into appropriate classes, place your name near the top of each file, comment appropriately, be limited to 80 character lines, be limited to 30 line methods (usually shorter), and be properly indented.

View Answer
divider