Hello there!
It is Bitmap.
Hope This Helps You!
Good Luck :)
Answer:
a) to persuade
she is doing this to propose an idea to the boss of the company
Answer:#include <iostream>
using namespace std;
int main()
{
int factorial = 1;
for (int i = 5; i > 0; i--) {
factorial = factorial * i;
}
cout<<factorial;
return 0;
}
Explanation:
Google yourself once a year.