An element is what makes up the HTML long story short.
Answer:
ask customers to use strong passwords to protect their accounts
You, in turn, might end up getting hurt or bullied.
- you can accept or reject the changes one at a time or all at one time.
- click at the beginning of the document , and then on the review tab, click next to go to the first tracked change.
- Click Accept or reject to keep or remove the change.
Keep repeating the step 2 until you've reviewed all of the changes in your document.
*Hope this helps !!! Mark me Brainliest :)
Program to display greater number:
#include <iostream> <em>// Needed to perform IO operations </em>
#include<conio.h> <em> // header file</em>
using namespace std;
int main() //start of the program
{
int a , b =0; //initialising the two integer variable
cout<< "Enter first number"<<endl;
cin >> a; //user's first number
cout<< "Enter second number"<<endl;
cin >> b; //user's second number
if (a>b) //comparing the two integers input by user
cout<< a << "is greater than" << b; //display the greater number
else
cout<< b << "is greater than" << a;
return 0; // exist
}