Answer:
2
Explanation:
The system only uses 2 numbers which are 0 and 1 instead of the usual 10 numbers; 0, 1, 2, 3, 4, 5, 6, 7, 8 & 9.
It cannot be database programs because database programs can not
store and organize data.
create graphics.
communicate data.
alleviate information overload.
It cannot be spreadsheets because a spreadsheet or worksheet is a file made of rows and columns that help sort data, arrange data easily, and calculate numerical data. What makes a spreadsheet software program unique is its ability to calculate values using mathematical formulas and the data in cells.
It cannot be word processing tools because a word processor is software or a device that allows users to create, edit, and print documents. It enables you to write text, store it electronically, display it on a screen, modify it by entering commands and characters from the keyboard, and print it.
Therefore the answer is C. Web design programs.
Hope this helps.
Here you go,
class Program
{
static void Main(string[] args)
{
int n,i,j;
Console.Write("Enter size: ");
n = Convert.ToInt32(Console.ReadLine());
for (i = 1; i <= n; i++)
{
for (j = 1; j <= i; j++)
{
System.Console.Write("*");
}
System.Console.Write("\n");
}
Console.ReadLine();
}
}