Questions asked
Pathophysiology for pediatric patients with left sided congenital hernia and pulmonary hypertension
What is the focus of environmental psychology when studying indoor environments? a) The impact of genetic factors on behavior b) The influence of indoor design on well-being and productivity c) The role of diet and exercise in health d) The effects of weather patterns on mood
Required information SB: Refer to the following sample of Daily COVID-19... Skip to question Refer to the following sample of Daily COVID-19 cases during the fourth wave: 727 640 653 647 613 466 495 597 TB 03-210: Compute the variance for the number of daily... Compute the variance for the number of daily cases Multiple Choice 606.6 64 7389 86.0
7-ii Configuration - E,Z Example: name each alkene and specify its configuration by the E,Z system H CH$_3$ Cl H (a) $\text{C}=\text{C}$ (b) $\text{C}=\text{C}$ / H$_3$C CH(CH$_3$)$_2$ H$_3$C CH$_2$CH$_3$ CICH$_2$ CH$_3$ Cl H (c) $\text{C}=\text{C}$ (d) $\text{C}=\text{C}$ / H$_3$C CH$_2$CH$_3$ Br CH$_3$
Use Stokes'Theorem to evaluate x+ydx+2(2x-3)dy+2y+zdz over the boundary of the triangle with vertices 2,0,0,0,3,0),and (0,0,6) traversed in a counterclockwise manner when viewed from above.
Texts: use any id or name for run the code Submission Guideline: Write the bash commands in a text file. Rename the text file with your 9-digit student ID and give it an extension of .sh. Submit the text file. Please do not copy codes from others/the internet. Each of the offline assignments will be evaluated with a viva. You must be able to explain your code. Also, we will run a copy check on the submissions. Any plagiarism will be severely penalized. Time: Total Marks: 25 Write a shell script UCAM which has the following behavior: ./UCAM dept_new <dept name>: Creates a file with the name as <dept name.txt>. Example: ./UCAM dept_new CSE [creates new file with the name CSE.txt] ./UCAM dept_del <dept name>: Deletes the file with the name <dept name.txt>. Example: ./UCAM dept_del CSE [deletes the file with the name CSE.txt] ./UCAM student_new <student name> <student ID> <dept name>: Adds this student (name, id, dept) in the corresponding dept file. Do not add this student if the <dept> does not exist, or if the student already exists in ANY dept file. Example: ./UCAM student_new Adeeb 011201309 CSE [adds 'Adeeb 011201309 CSE' to the file CSE.txt] ./UCAM student_del <student name> OR <student ID>: Deletes the entry for that student from ANY of the dept. Example: ./UCAM student_del Adeeb [deletes info of 'Adeeb' from ALL the files] OR ./UCAM student_del 011201309 [deletes info of '011201309' from ALL the files]
The C language allows you to define new names for existing types using typedefs. Here is some example code that uses typedefs: typedef int money; int x; money y; typedef money dollars; dollars z; x = 10; y = x; // OK because x and y are of type int z = y; // OK because y and z are of type int The first typedef defines \texttt{money} to be a synonym for \texttt{int}. Any declaration that follows this typedef can use \texttt{money} instead of \texttt{int}. The second typedef defines \texttt{dollars} to be a synonym for \texttt{money}, which makes it a synonym for \texttt{int}. Any declaration that follows this typedef can use \texttt{dollars} instead of \texttt{int}. Typedef's can also be used with struct types: struct Pair { int x; int y; }; typedef struct Pair Point; Point p; A typedef can occur anywhere that a variable declaration (local or global) can occur. The usual C scoping rules apply to the names in typedefs. Note that \texttt{typedef int money;} is considered to be a declaration of the name \texttt{money} and that both \texttt{money x;} and \texttt{typedef money dollars;} are considered to be uses of the name \texttt{money}. Question 1: Assume that the following productions have been added to the grammar for the cflat language: decl $\rightarrow$ typedef typedef $\rightarrow$ TYPEDEF type ID SEMICOLON What other productions need to be changed and/or added to the cflat grammar to allow typedefs?
Find the locations of the absolute extrema of the function on the given interval.\\ $f(x) = \frac{4x}{x^2 + 16}$ ; $[-5, 5]$
An object is thrown vertically upward whose height is given by the function $s(t) = -16t^2 + 40$ where $t$ is measured in seconds and $s$ is measured in feet. Find the velocity of the object after 5 seconds. $v(5) = $ ft/sec
3.4 A longitudinal fin of AISI 302 stainless steel has a length and thickness of 8 cm and 1.2 mm, respectively. The fin's base is maintained at 85°C, and room air at 22°C flows across the fin, yielding a height transfer co- efficient of 18 W/m$^2$K. What is the fin height required to transfer 2.5 W from the fin?