Which one of the following strings will be displayed in the message box?

Look at the following code sample:

```
enum Flavor { Vanilla, Strawberry, Chocolate }

Flavor iceCreamFlavor = Flavor.Strawberry;
MessageBox.Show(iceCreamFlavor + " is my favorite!");


```

a. Flavor.Strawberry is my favorite!
b. ice Cream Flavor is my favorite!
c. Strawberry is my favorite!
d. ice Cream Flavor + is my favorite!


c. Strawberry is my favorite!

Computer Science & Information Technology

You might also like to view...

A ________ object can be moved independently of the surrounding text

A) floating B) leading C) free-form D) posted

Computer Science & Information Technology

The balloons and inline revisions in a reviewed document are known as ________

A) comments B) markups C) edits D) changes

Computer Science & Information Technology

When there is a file in the ________ field a paperclip appears in the field

Fill in the blank(s) with correct word

Computer Science & Information Technology

Using a binary search, finding a value from a list of a million entries involves at most 20 steps.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology