Answer:
integrity
is acting consistently according to one's values and principles.
Answer:
ncdjjgcdbywgf ebyafbhfgcabfy bahgfdhvgafvhaef aeyhyfbhavgcjhvvhgfrau ahkgvbha,vjykabvfbhagkfvbadh avhvhav havgkv fa64gfdvwhefv nsdagcyudaf vdabncvyaukefk we7ytryuhaqgryw4tgty gyut r uytr eyuguhjayuft47rgutr7ytr yuwqGHRUEGW7RUGU4GQATYUERGAYFUGEURGAAQ
Explanation:
Answer: This problem is called a <em>run-time error. </em>
Explanation:
When the program is being executed and Javascript interpreter encounters the problem it is a run-time error. These errors are different from a syntax error that also occurs frequently and may not even represent a Javascript language error.
Answer:
bool isdivisor(int x) // function definition
{
if(x%5==0) // check Integer is divisible by 5
{
return true;
}
else
{
return false;
}
}
Explanation:
#include <iostream>// header file
using namespace std; // using namespace std;
bool isdivisor(int num); // prototype
int main() // main function
{
bool t; // bool variable
int num; // variable declarartion
cout<<" enter the num:";
cin>>num; // input number
t=isdivisor(num); // calling
if(t)
cout<<" number is divisible by 5 ";
else
cout<<" number is not divisible by 5";
return 0;
}
bool isdivisor(int x) // function definition
{
if(x%5==0)
{
return true;
}
else
{
return false;
}
}
Output:
enter the num:50
number is divisible by 5
Explanation:
In this program we have a declared a Boolean function i.e isdivisor that accept one argument of type int.
check if(x%5==0) it return true otherwise false .