Show the printout of the following code:

```
#include
using namespace std;

int main()
{
int i = 1;
while (i <= 4)
{
int num = 1;
for (int j = 1; j <= i; j++)
{
cout << num << "bb";
num *= 3;
}

cout << endl;
i++;
}
}
```


Computer Science & Information Technology

You might also like to view...

The shape of a binary search tree is

A) always triangular. B) always balanced. C) determined by the programmer. D) determined by the order in which values are inserted. E) None of the above

Computer Science & Information Technology

Unless it is told otherwise, the operating system searches for files starting with your __________ directory.

a. working b. root c. home d. there is no default

Computer Science & Information Technology

After a document has been marked as final, [Final] will display in the title bar after the file name

Indicate whether the statement is true or false

Computer Science & Information Technology

Most computer historians agree that computers have evolved through _______ distinct generations.

A. three B. four C. five D. six

Computer Science & Information Technology