Show the printout of the following code:
```
#include
using namespace std;
void xFunction(int i)
{
int num = 1;
for (int j = 1; j <= i; j++) {
cout << num << " ";
num *= 3;
}
cout << endl;
}
int main()
{
int i = 1;
while (i <= 5)
{
xFunction(i);
i++;
}
return 0;
}
}
```
Computer Science & Information Technology
You might also like to view...
While presenting your work online, you can share your meeting notes with your audience
Indicate whether the statement is true or false
Computer Science & Information Technology
Which of the following is defined by IP subnets instead of physical locations?
A. Active Directory controller B. Active Directory site C. Active Directory DNS D. Active Directory OU
Computer Science & Information Technology