Use persuasion, meaning persuade them to stop
Answer: Neh - tuh - ket
Explanation:
The above answer is the phonetical pronunciation of the word Netiquette which is an amalgamation of the words, Net and Etiquette and as the term implies, refers to the behavior on the internet that is socially acceptable and good so that other people are not made to feel uncomfortable.
The code below is written in javascript which gives us the integer,
<h3>The function code is</h3>
function solution (num){
//Javascript function
var x=0,sum=0,a,b;
var d=""; //variable declaration
var digits = num.toString().split('');
var Individual = digits.map(Number);
//console.log(Individual);
for (var i=0;i<Individual.length;i++)
{//For loop
x=x+Individual[i];
}
var y=x*2;
for(var i=0;i<Individual.length;i++)
{
sum=sum+Individual[i];
d=""+d+Individual[i];
if(sum==y)
break;
if(i==Individual.length-1)
{
i=-1;
continue;
}
}
console.log("the value is "+d);
}
var number = prompt("enter the number");
//Asking user for value...
console.log("the number is");
console.log(number);
solution(num
For more information on javascript, visit
brainly.com/question/16698901?referrer=searchResults
The program that checks the BMI of a patient is given below:
<h3>THE CODE</h3>
#include <iomanip>
#include <iostream>
#include <math.h>
using namespace std;
// C++ program to illustrate
// how to calculate BMI
float BMI(float height, float weight)
{
float bmi = weight / pow(height, 2);
return bmi;
}
int main()
{
float height = 1.79832;
float weight = 70;
// Function call
float bmi = BMI(height, weight);
cout << "The BMI is " << setprecision(15) << bmi
<< " so ";
// Conditions to find out BMI category
if (bmi < 18.5)
cout << "underweight";
else if (bmi >= 18.5 && bmi < 24.9)
cout << "Healthy";
else if (bmi >= 24.9 && bmi < 30)
cout << "overweight";
else if (bmi >= 30)
cout << "Suffering from Obesity";
return 0;
}
// This code is contributed by aarohirai2616.
<h3>Output: </h3>
The BMI is 21.64532402096181 so Healthy
Read more about algorithms here:
brainly.com/question/24953880
#SPJ1
Usually it’s either 5400 or 7200RPM