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;
}
You just multiply the x value by 5
-2(5)=-10
-1(5)=-5
0(5)=0
3(5)=15
6(5)=30
9(5)=45
Answer:
N=9/2
Step-by-step explanation:
Question: <u>10=2N+1</u>
1) Subtract 1 from both sides:
9=2N
2) Divide both sides of the equation by 2:
N=9/2
Answer:
Step-by-step explanation:
The domain is the horizontal extent of the graph, the set of x-values for which the function is defined. The range is the vertical extent of the graph, the set of y-values defined by the function.
<h3>Simplified</h3>
The given function is undefined where its denominator is zero, at x=1. Everywhere else, it can be simplified to ...

<h3>Domain</h3>
The simplified function (3x+4) is defined for all values of x except x=1. The simplest description is ...
x ≠ 1
In interval notation, this is ...
(-∞, 1) ∪ (1, ∞)
<h3>Range</h3>
The simplified function is capable of producing all values of y except the one corresponding to x=1: 3(1)+4 = 7. The simplest description is ...
y ≠ 7
In interval notation, this is ...
(-∞, 7) ∪ (7, ∞)