Quiz

Let's solve a quiz to see where you stand!

We'll cover the following...

Quiz

1.

What is the output of the following code?

int main() {
  cout << "*****" << endl;
  cout << "***" ;
  cout << "*****" << endl;
  cout << "***" ;
}
A.

*****

***

*****

***

B.

*****

********

***

C.

********

*****

***

D.

*****

***

********


1 / 5

🎉Congratulations! You have ...