Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
eric c-spedes

eric c.

Divider

Questions asked

BEST MATCH

Find the steady-state temperature $u(r, \theta)$ within a hollow sphere $a < r < b$ if its inner surface $r = a$ is kept at temperature $f(\theta)$ and its outer surface $r = b$ is kept at temperature zero. The sphere in the first octant is shown in the figure below. (Let $P_n$ denote the $n^{th}$ Legendre polynomial.) $u(r, \theta) = \sum_{n=0}^{\infty} \left[ \Box \right] \left( \int_0^{\pi} f(\theta) P_n(\cos \theta) \sin \theta \, d\theta \right) P_n(\cos \theta)$

View Answer
divider
BEST MATCH

\( \frac{d}{d x} \log _{b}(x)=\frac{1}{x \ln (b)}=\frac{\log _{b}(e)}{x} \)

View Answer
divider
BEST MATCH

Which one of the following is the preferred order for entering supplier information- A) It does not matter which order you used to enter the above information B) Supplier name and address, terms, currency, historical invoices C) Supplier name, terms, sales taxes and codes, historical invoices, currency D) Supplier name and address, historical invoices, terms, currency

View Answer
divider
BEST MATCH

What are the four assumptions of traditional ethics that feminist ethics attempts to undermine?

View Answer
divider
BEST MATCH

Part 2. Given two filenames and a word to be searched as commandline arguments, open the first file to read and the second for writing. Write each line of the first file that contains the search word as a substring to the second file. Part 3. Write a program that reads lines of text from a text file. Each line of the input file contains a telephone number as in the form 555-555-5555. Use fgets and strtok functions to extract the area code (first 3 digits of this string) as a token, the first three digits of the phone number as a token, and the last four digits as a token. Create a single string containing the phone number as in format (555) 555 5555 and output it to a file called \"out-part2.txt\".

View Answer
divider
BEST MATCH

Required 1. Estimate the regression equation for (a) medical supplies costs and number of procedures and (b) medical supplies costs and number of patient-hours. You should obtain the following results: Regression 1: Medical supplies costs = $a + ($b \times Number of procedures) Variable Coefficient Standard Error $t$-Value Constant $36,939.77 $56,404.86 0.65 Independent variable: No. of procedures $ 361.91 $ 152.93 2.37 $r^2$ = 0.36; Durbin-Watson statistic = 2.48 Regression 2: Medical supplies costs = $a + ($b \times Number of patient-hours) Variable Coefficient Standard Error $t$-Value Constant $3,654.86 $23,569.51 0.16 Independent variable: No. of patient-hours $ 56.76 $ 7.82 7.25 $r^2$ = 0.84; Durbin-Watson statistic = 1.91 2. On different graphs plot the data and the regression lines for each of the following cost functions: a. Medical supplies costs = $a + ($b \times Number of procedures) b. Medical supplies costs = $a + ($b \times Number of patient-hours) 3. Evaluate the regression models for \"Number of procedures\" and \"Number of patient-hours\" as the cost driver according to the format of Exhibit 10-18 (page 406). 4. Based on your analysis, which cost driver should Julie Chen adopt for Apollo Hospital? Explain your answer.

View Answer
divider
BEST MATCH

11. Develop a java program to illustrate handling throws Exception. Program class ThrowDemo { static void demoproc() { try { throw new NullPointerException("demo"); } catch(NullPointerException e) { System.out.println("Caught inside demoproc."); throw e; // rethrow the exception } } public static void main(String args[]) { try { demoproc(); } catch(NullPointerException e) { System.out.println("Recaught: " + e); } } } 12. Develop a java program to illustrate handling thrown Exception. Program import java.util.Scanner; public class prg62 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double mark; System.out.println("Enter Mark "); mark=sc.nextDouble(); try{ if(mark<0 || mark>100) throw new RuntimeException("Invalid Mark"); } catch(RuntimeException e){ System.out.println(e.getMessage()); System.out.println("the exception is handled"); } } } Output

View Answer
divider
BEST MATCH

1. Research on students' teaching ratings on the website www.ratemyprofessor.com indicates that: A. For male teachers, perceptions of attraction and teaching skills were unrelated. B. Teachers' non-physical qualities have nothing to do with their likability. C. Both male and female professors who are rated as "hot" are also given high teaching ratings. D. Female professors who are rated as strong teachers tended to be seen as less attractive. 2. Research concerning the relationship between group cohesiveness and performance suggests that: A. Highly cohesive groups perform less well than less cohesive groups. B. The two are only related when there is a strong leader present. C. The relationship is stronger in groups composed of men than groups of women. D. Groups that perform well may develop stronger cohesiveness.

View Answer
divider
BEST MATCH

A) Find the simple interest earned in 6 years when $10,000 is invested at a rate of 10% per annum. What is the total amount at the end of 6 years? B) Ash plans to buy a mountain bike that costs him RM5000 to enable him to participate in the competition. The competition will be held in the next two years. How much should Ash deposit in an investment account, specifically his ASB account, today if the annual dividend rate is 8%? (Present Value Single Amount) C) Sandra has confirmed that the company will get an additional investment worth RM1 million from her partner company based in Malaysia. Her partner promises to inject the money now and wants to see the investment growth result in 5 years. If the growth rate is 7% per annum, what is the future value of the investment? (Future Value Single Amount) D) Andrew Liu deposits RM5,000 today in an account drawing 12% compounded quarterly. How much will he have in the account at the end of 3 years? (Compounding Non-Annually)

View Answer
divider
BEST MATCH

What is likely to happen to demand and quantity demanded for mango juice if all grocery store chains place it on sale at 50% discount assuming that nothing else changes?

View Answer
divider