Questions
Can someone rewrite this in past tense, passive voice? To begin the first experiment, you must...

Can someone rewrite this in past tense, passive voice?

To begin the first experiment, you must first calibrate the Spectrophotometer. First transfer water into the cuvette, wipe cuvette and place into the spectrophotometer, then calibrate the instrument. Once calibrated construct a calibration curve for the food dye dilutions of red, yellow, and blue. Begin with transferring the color dilution series to the cuvettes and wipe the cuvettes. Place a cuvette into the spectrophotometer and enter the desired analytical wavelength, in this case we started with blue, so we entered 628 nm, and press go. Measure and save the absorbance for each sample in the color dilution series. Remember when doing so to save the absorbance values in the “current data table”. After measuring the absorbance of each sample in the color dilution series, create a calibration curve with the saved data. Enter the slope for the best fit line into your notebook. Repeat for the following color dilution series. Next to determine the concentration of the unknown sample (x) we repeat the process of transferring the unknown sample into cuvette and recording the absorbance, using the correct analytical wavelength. Finally, calculate the concentration for the unknown sample using the calibration curve.

            In the second experiment prepare colored dye mixtures in a clean test tube. Using red, blue, and yellow make 3 mixtures that are different be sure to stir mixtures. Using the concentration of each colored solution, calculate the theoretical concentration for each color in the mixture and record your data in your notebook. In the next part in experimental determination of dye concentration use a pipet as you did in the first experiment, make sure you calibrate the instrument first and then measure the absorbance of each mixture using the correct analytical wavelengths given. Use the calibration curve and determine the experimental concentration of each color dye in the mixture and record each concentration. Calculate the absolute and percent errors, then evaluate the accuracy of each theoretical concentration. In the last experiment there is an unknown sample of a mixture of red and yellow food dyes. Repeat the process of measuring the absorbance of this mixture using the correct given wavelengths. Once recorded use the molar absorptivities given and calculate the concentration for each colored dye in the mixture and record in your notebook.

In: Chemistry

1.5 Suppose you believe that, in general, graduates who have majored in your subject are offered...

1.5 Suppose you believe that, in general, graduates who have majored in your subject are offered higher salaries upon graduating than are graduates of other programs. Describe a statistical experiment that could help test your belief.

1.6 You are shown a coin that its owner says is fair in the sense that it will produce the same number of
heads and tails when flipped a very large number of times.

a.Describe an experiment to test this claim.

b. What is the population in your experiment?

c. What is the sample?

d. What is the parameter?
e. What is the statistic?

f. Describe briefly how statistical inference can be used to test the claim.

1.7 Suppose that in Exercise

1.6 you decide to flip the coin 100 times.

a.What conclusion would you be likely to draw if you observed 95 heads?
b. What conclusion would you be likely to draw if you observed 55 heads?
c.Do you believe that, if you flip a perfectly fair coin 100 times, you will always observe exactly 50 heads? If you answered “no,” then what numbers do you think are possible? If you answered “yes,” how many heads would you observe if you flipped the coin twice? Try flipping a coin twice and repeating this experiment 10 times and report the results.

1.8 Xr01-08 The owner of a large fleet of taxis is trying to estimate his costs for next year’s operations. One major cost is fuel purchase. To estimate fuel purchase, the owner needs to know the total distance his taxis will travel next year, the cost of a gallon of fuel, and the fuel mileage of his taxis. The owner has been provided with the first two figures (distance estimate and cost of a gallon of fuel). However, because of the high cost of gasoline, the owner has recently converted his taxis to operate on propane. He has measured and recorded the propane mileage (in miles per gallon) for 50 taxis.

a.What is the population of interest?
b. What is the parameter the owner needs?

c. What is the sample?
d. What is the statistic?

e. Describe briefly how the statistic will produce the kind of information the owner wants.

In: Math

Shown here is the sort.c program which takes data.txt and sorts it. If I have found...

Shown here is the sort.c program which takes data.txt and sorts it. If I have found the addresses for system(), exit(), and “/bin/sh”, how would I do the following by ONLY changing the contents of data.txt?: 1) open the shell code 2) exit cleanly fron the shell code all while 3) not receiving a seg fault.

I beleive the correct answer is to have about 18-19 rows of aaaaaaaa followed by the three addresses so that when the stack starts to pop off one of the new addresses will be in the olace of the sort return address.

Here is the code in plain text:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

/*
* a toy program for learning stack buffer
* overflow exploiting
* It reads a list of hex data from the
* specified file, and performs bubble sorting
*/

#define SORT_ME 1 //Comment this out and recompile if you do not want the function to sort your values.

long n = 0, c = 0, d = 0, v = 0;

FILE *fp = NULL;

void SortData()
{
long swap = 0;
long array[17];

// loading data to array
printf("Source list:\n");
char line[sizeof(long) * 2 + 1] = {0};
while(fgets(line, sizeof(line), fp)) {
if (strlen((char *)line) > 1) {
sscanf(line, "%lx", &(array[n]));
printf("0x%lx\n", array[n]);
++n;
}
}
fclose(fp);

#ifdef SORT_ME   
for (c = 0; c < (n - 1); c++)
{
v = c;
for (d = ( c + 1 ); d < n; d++)
{
if (array[d] < array[v])
{
// Swap the found minimum element with the first element
swap = array[d];
array[d] = array[v];
array[v] = swap;
}
}
}
#endif

// output sorting result
printf("\nSorted list in ascending order:\n");
for ( c = 0 ; c < n ; c++ )
printf("%lx\n", array[c]);

}

int main(int argc, char **argv)
{
if(argc!=2)
{
printf("Usage: ./sort file_name\n");
return -1;
}

// From http://stackoverflow.com/questions/5141960/get-the-current-time-in-c
time_t rawtime;
struct tm * timeinfo;

time(&rawtime);
timeinfo = localtime(&rawtime);
printf("Current local time and date: %s\n\n", asctime(timeinfo));
  
fp = fopen(argv[1], "rb");
SortData();

return 0;
}

In: Computer Science

Compound A with the molecular formula (C3H8O) on oxidation gives compound B, which does not undergo...

Compound A with the molecular formula (C3H8O) on oxidation gives compound B, which does not undergo Tollen’s test. Give the condensed structural formula for compound A. Give the IUPAC name for compound A. Spell out the full name of the compound. Give the condensed structural formula for compound B.

In: Chemistry

Using MIPS (MARS) - Assembly Language Assignment ( PLEASE USE COMMENTS TO DESCRIBE EACH STEP )...

Using MIPS (MARS) - Assembly Language Assignment

( PLEASE USE COMMENTS TO DESCRIBE EACH STEP )

Take input of name,

the input of hours worked,

and input of hourly wage,

and use input of hourly wage and hours worked to calculate total paycheck and print Name,

and paycheck.

In: Computer Science

2. (a) (b) Define viruses and virion (10 marks) (c) Name three main importance of fungi...

2. (a)
(b) Define viruses and virion
(c) Name three main importance of fungi
(d) Explain briefly nucleocapsid
Name 3 advantages and 3 disadvantages of normal flora
Examiner: Prof. K. K. Addo

e) Explain bacteriophages
(f) What are lentiviruses


In: Nursing

a)Explain how history plays a role in the distribution of species b)Name and describe the biotic...

a)Explain how history plays a role in the distribution of species

b)Name and describe the biotic and abiotic factors that determines the abundance of organisms (this should be a long answer)

c)Name and then describe the major terrestrial biomes of the Earth, include the factors that are most important for determining the distribution of the biomes.

In: Biology

Normalize the following data by: a) identifying the functional dependencies, b) stating your assumptions, \ c)...

Normalize the following data by:

a) identifying the functional dependencies,

b) stating your assumptions, \

c) creating relations, and

d) identifying primary and foreign keys.

Customer Number| First Name |Last Name |Phone | Invoice Number| Date |Item Type |Quantity Item Price

In: Computer Science

a. If ? ~ ?(?,?), find the distribution (name and parameters) of ?=?X+?. b. If ?~?(0,?),...

a. If ? ~ ?(?,?), find the distribution (name and parameters) of ?=?X+?.

b. If ?~?(0,?), find the density of ?=|?|.

c. If ? ~ ?amma(?,?), find the distribution (name and parameters) of ?=?X.

d. If ? ~ Uniform(0,1), find the density function of ?=√?.

e. If Θ ~ Uniform(−?/2,?/2), find cdf and the density function of ?=tan(Θ).

In: Statistics and Probability

Show ALL work if it is required for the question and BASES 7. Name 3 components...

Show ALL work if it is required for the question and BASES

7. Name 3 components of the CPU and the Buses. Describe what they do.

8. Name 4 essential status flags and describe what they do.

9. Translate this Expression to Assembly: EAX = -val2 + 7 - val3 + val1

In: Computer Science