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:
Belle's weekly earnings per week in 2008: $245.7
Step-by-step explanation:
The federal minimum wage in the year 2008 was: $6.55
She worked 37.5 hours per week.
She earn each week:

Size 40 is the cheapest, because the formula to find lowest price of unit is dividing the price by the unit. so 5.49/24≈ 0.23, 8.00/40=0.2, 15.99/64≈ 0.25
Answer:
Manish has Rs630 while Jhanavi has Rs168.
Step-by-step explanation:
The fraction Manish would have left would be subtracting the fraction on savings as well as that spent on the mall. Which would be;
1 -( 1/2 + 1/4)=1 -3/4 = 1/4
Meaning Manish had 1/4 of his allowance left on him.
Which means 1/4 × Rs. 2520=Rs630
Similarly for Jhanavi, we have :
The fraction left as
1-(1/3 +3/5) = 1 - ( 14/15) = 1/15
Meaning 1/15 of the allowance got remains which is;
1/15 × Rs. 2520= Rs.168
F(2) is same thing as saying x =2
So just plug in 2 for x and solve for x
3*(2)^3 - 12*(2)^2 =
3*8 - 12*4 =
24-48 =
-24
D