Answer:
Call tracking system
Explanation:
It helps to measure total amount of visitors per month and based on the volume of visitors, it calculates how many phone numbers should be displayed to show a different number for each clique.
Answer:
#include <bits/stdc++.h>
using namespace std;
bool isPrime(int n)
{
for(int j=2;j<=n-1;j++) //loop to check prime..
{
if(n%j==0)
return false;
}
return true;
}
int main(){
int n;
cout<<"Enter the integer"<<endl;//taking input..
cin>>n;
if(isPrime(n))//printing the message.
{
cout<<"The number you have entered is prime"<<endl;
}
else
{
cout<<"The number is not prime"<<endl;
}
return 0;
}
Output:-
Enter the integer
13
The number you have entered is prime
Explanation:
The above written program is in C++.I have created a function called isPrime with an argument n.I have used a for loop to check if the number is prime or not.In the main function I have called the function isPrime for checking the number is prime or not.
If you glare and grit your teeth while telling your friend that you're not frustrated, your nonverbal communication is contradicting your verbal communication.
HyperText Markup Language
Answer:
so
tv= 400$
VCR= $220
remote controller= $35
CD Player= $280
Tap recorder= $90
so total = $1025 total
here 8% sale tax increase so is 82$ so
1025-82$ = 943 total amount
increase or decrease tax according to your question :)