Entries by Student

write my assignment 11963

Just as in needs assessments, interviews and focus groups are common tools for obtaining information about the processes involved in the implementation of programs. Process evaluation should include specifics about purpose, questions which the evaluation will address, and methods that social workers will use to conduct evaluations.

Review the many examples of process evaluation ATTACHED. Select an example of a process evaluation that produced valuable information. Compare the description of those results with the Social Work Research Qualitative Groups case study ATTACHED.

Post a description of the process evaluation that you chose and explain why you selected this example. Describe the stage of program implementation in which the evaluation occurred, the informants, the questions asked, and the results. Based upon your comparison of the case study and the program evaluation report that you chose, improve upon the information presented in the case study by identifying gaps in information. Fill in these gaps as if you were the facilitator of the focus group. Clearly identify the purpose of the process evaluation and the questions asked.

 

"Not answered?"


Get the Answer

write my assignment 9614

Need help making the program below work. Must be in C only.Write a MAIN function and the following funcations to compute the stress and strain in a steel rod of diameter D (inches) and length L (inches) subject to the compress loads P of 10,000 to 1,000,000 pounds in increments of 100,000 pounds. The modulus of elasticity E for steel is 30 x 10 to the 6th power.A function to compute the stress from the formulas:stress f = P/AWhere A = PI Dsquared/4.0A funcation to compute the strain from the formulas:elondated or shortened length (delta)L=fL/Estrain e = (delta)L/L =f/eA funcation to output the stress and strain at differant loads of PMain******************************* * *calculate stress calculate strain outputThe functions should call each other as shown in the chart above.

#include<stdio.h> #include<conio.h> void main() { clrscr(); printf("The stress is "); stress(12); printf("The strain is "); strain(23); } int stress(double D) {…

 

"Not answered?"


Get the Answer

write my assignment 28555

Design an abstract class named BankAccount to hold the following data for a bank account:

  • Balance
  • Number of deposits this month
  • Number of withdrawals
  • Annual interest rate
  • Monthly service charges

The class should have the following methods:

Constructor: The constructor should accept arguments for the balance and annual interest rate

deposit:      A method that accepts an argument for the amount of deposit. The method should add the argument to the account balance. It should also increment the variable holding the number of deposits.

withdraw:    A method that accepts an argument for the amount of the withdrawal. The method should subtract the argument from the balance. It should also increment the variable holding the number of withdrawals.

calcInterest:       A method that updates the balance by calculating the monthly interest earned by the account, and adding this interest to the balance. This is performed by the following formulas:

  • Monthly Interest Rate = (Annual Interest Rate/12)
  • Monthly Interest = Balance * Monthly Interest Rate
  • Balance = Balance + Monthly Interest

monthlyProcess:   A method that subtracts the monthly service charges from the balance, calls the calcInterest method, and then sets the variable that hold the number of withdrawals, number of deposits and monthly service charge to zero.

Next, design a SavingAccount class that is a subclass of the BankAccount class. The SavingAccount class should have a status field to represent an active or inactive account. If the balance of a savings account falls below$25, it becomes inactive. (The status field could be a Boolean variable.) No more withdrawals can be made until the balance is raised above $25, at which time the account becomes active again. The savings account class should have the following methods:

withdraw:    A method that determines whether the account is inactive before a withdrawal is made. No withdrawal will be allowed if the account is not active. A withdrawal is then made by calling the super-class version of the method.

deposit:     A method that determines whether the account is inactive before a deposit is made. If the account is inactive and the deposit brings the balance above $25, the account becomes active again. The deposit is then made by calling the super-class version of the method.

monthlyProcess:   Before the super-class method is called, this method checks the number of withdrawals. If the number of withdrawals for the month is more than 4, a service charge of $1 for each withdrawal above 4 is added to the super-class fields that holds the monthly service charges. (Don’t forget the check the account balance after the service charge is taken. If the balance falls below $25, the account becomes inactive.)

Now write driver class to demo/test your code of the BankAccount and SavingAccount. Display the result via the standard output screen and file output as well.

The last part is to design and use a Graphical User Interface (GUI) to test those method/behaviors of the BankAccount, SavingAccount classes.

Also, you need to elaborate reflection report about your learning experience in this class as well as working on this final project.

 

"Not answered?"


Get the Answer

write my assignment 3795

A certain disk rotates at 5400 revolutions per minute, has 128 tracks each of which is divided into sixteen 512-byte sectors. Assume that there are no gaps between sectors. Given no other information, answer the following questions.

a)  What is the maximum possible rotational latency required to get to the beginning of a  specified sector?

b)  What is the minimum possible rotational latency required to get to the beginning of a specified sector?

c)  What is the average rotational latency required to get to any sector?

The following examples will clarify some of these concepts.Example 1Find the average rotational latency if the disk rotates at 20,000 rpm.SolutionThe average latency to the desired data is…

 

"Not answered?"


Get the Answer