1) Statistical Inference :
One of the main objectives of Statistics is to draw inferences
about a population from the analysis of a sample drawn from the
given population is known as Statistical Inference. In other words
SI is a theory ,method and judgement to infer about the parameters
of a population.
2) A sample may be drawn in number of ways. A random sample is a
good representative of population as it ensures unbiasedness. and
sample items are indiepentent to each other
3)Both mean and median have their own properties and are being used
in appropriate ways.
for example if we are supposed to calculate average marks of a
students in five subjects then we will use mean instead of mean and
if we are supposed to calculate average income of a person living
in a country we will compute median in place of mean.
4)Histogram is best in visualization of single
distribution
For eg.If we have have a following data set, representing the
number of students in different class intervals of marks of a
particular subject.
| Class interval | Frequency |
|---|---|
| 10-30 | 10 |
| 30-60 | 20 |
| 60-80 | 25 |
| 80-100 | 10 |
in this case we will use histogram for data visualization,
I need help on #6 and #7
6. (3 pts) State whether or not the following set of ordered pairs is a function AND explain how you know. {(1,4),(2,7),(2,9),(3,16),(4,21)} 7. (4 pts) State the domain and range of the function drawn below. A Domain: Range:
I need 2 to 6
I need 3 and 4
3. (6 pts) Identify the nucleophile, substrate, and leaving group of the following reaction: Acetone CH3CH2CH2Cl + NaBr + CH3CH2CH2Br + NaCl Nucleophile: Substrate: Leaving Group: 4. (6 pts) Identify the nucleophile, substrate, and leaving group of the following reaction (CH3)3CCI + AgNO3 + EtOH (CH3)3COEt + HNO3 + AgCl Nucleophile: Substrate: Leaving Group:
I need help with 3 - 6, 9 & 10 QUESTION 3 To call a static method you first need to create an instance of a class. True False QUESTION 4 If a field is static, it gets copied to all instances of that class True False QUESTION 5 A static method can call an instance method True False QUESTION 6 When a method receives an object as an argument, the method can change the values of its fields. True...
I need help answering these questions. Given the postfix expression: 3 5 6 * + 13 – 18 2 / + = calculate its result step-by-step, using the postfix evaluation algorithm that we discussed in class. You need to write the step-by-step results below: token stack result
I need help please!! Suggest a mechanism for the conversion of 3-oxopropanoic acid to 6-oxo-pyran-3-carboxylic acid. Show all steps, thank you!
I don't know what 3, 4, 6, 7, and 8 are. I need help
understanding what they are and what they dom. Thanks for any help
in advance.
30) (5 points) What is the gene sequence above called? An Operan Is it inducible or repressible? Inducible What sort of organism would this sequence be found in? Prokarctic What do the following parts of the figure represent?
Help! in Java, test values {0, 1, 3, 6, 10} I need this to print 107 but it keeps printing 75. What am I doing wrong??? public int switchCase( int []values) { int sum = 0; for(int i = 0;i<values.length;i++){ sum += values[i]; } int value = values.length; switch (sum){ case 1: ...
So I did 4 and 5 and got 12/5 and 1/9 respectively. But
I need help with doing number 6, thanks.
Evaluate. 3 (4 5 4. 6. 49 343 2,401 k2 +17k +72 5 15
Evaluate. 3 (4 5 4. 6. 49 343 2,401 k2 +17k +72 5 15
I need a java program that prints the following: 1* 2** 3*** 4**** 5***** 6****** 7******* 8******** 9********* This is what I have so far, but I cannot figure out how to fix it. public class HelloWorld{ public static void main(String []args){ System.out.println("Pattern Two"); for (int line=1; line<10; line++){ System.out.println(); for (int j=1; j System.out.print(line); for (int i=1; i System.out.print("*"); } } } } }