1 pound is 16 ounces
32 ounces is 32 ÷ 16 = 2 pounds
1 pound of Botcoil ⇒ 1.5
2 pounds = 1.5 × 2 = 3
Answer:
A is the answer 456% and 512%
Step-by-step explanation:
Percent Errors
Trial A
Trial B
Measured Value
240
195
Actual Value
200
240
Percent Error
?
?
Complete the table.
Percent Errors
Trial A
Trial B
Measured Value
240
195
Actual Value
200
240
Percent Error
440440%
435435%
Answer:
d. The population standard deviation is known.
Step-by-step explanation:
T-distribution or Z-distribution, which to use?
If we have the population standard deviation is known, we use the z-distribution.
Otherwise, if we only have the standard deviation for the sample, we use the t-distribution.
Which of the following is not appropriate to use the t-confidence interval for
When the population standard deviation is known, so letter d.
Answer:
Algorithm
Start
Int n // To represent the number of array
Input n
Int countsearch = 0
float search
Float [] numbers // To represent an array of non decreasing number
// Input array elements but first Initialise a counter element
Int count = 0, digit
Do
// Check if element to be inserted is the first element
If(count == 0) Then
Input numbers[count]
Else
lbl: Input digit
If(digit > numbers[count-1]) then
numbers[count] = digit
Else
Output "Number must be greater than the previous number"
Goto lbl
Endif
Endif
count = count + 1
While(count<n)
count = 0
// Input element to count
input search
// Begin searching and counting
Do
if(numbers [count] == search)
countsearch = countsearch+1;
End if
While (count < n)
Output count
Program to illustrate the above
// Written in C++
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main()
{
// Variable declaration
float [] numbers;
int n, count;
float num, searchdigit;
cout<<"Number of array elements: ";
cin>> n;
// Enter array element
for(int I = 0; I<n;I++)
{
if(I == 0)
{
cin>>numbers [0]
}
else
{
lbl: cin>>num;
if(num >= numbers [I])
{
numbers [I] = num;
}
else
{
goto lbl;
}
}
// Search for a particular number
int search;
cin>>searchdigit;
for(int I = 0; I<n; I++)
{
if(numbers[I] == searchdigit
search++
}
}
// Print result
cout<<search;
return 0;
}
Answer:
17/20
Step-by-step explanation: