Answer: it is an error
Explanation: Even though it recognizes it it will not work because an error in the system
Answer:
#include <iostream>
using namespace std;
int main()
{
cout << "N\t10*N\t100*N\t1000*N" << endl;
int x=1;
while(x<=5){
cout << x <<"\t"<< x*10 <<"\t"<<x*100 <<"\t"<< x*1000 << endl;
x++;
}
return 0;
}
Explanation:
Print the header, N 10*N 100*N 1000*N, using \t
Initialize the x as 1. It will be used to control the while loop
Create a while loop that iterates while x is smaller than or equal to 5
Inside the loop, print the required values. After printing, increment the value of x by 1
Answer:
Table
Explanation:
A table of information is a set of rows and columns. It is a way of displaying information.
For example if we want to organize the information in the rows and columns then we should make the table. These rows and columns are formed cells and cells gathers to make a table.
<em>A rectangular range of cells with headings to describe the cells' contents is referred to as a </em><em><u>Table.</u></em>
Answer:
Social media can be biased.