MCQOPTIONS
Saved Bookmarks
| 1. |
Select the output for the following set of code: static void Main(string[] args) { float s = 0.1f; while (s <= 0.5f) { ++s; Console.WriteLine(s); } Console.ReadLine(); } |
| A. | 0.1 |
| B. | 1.1 |
| C. | 0.1 0.2 0.3 0.4 0.5 |
| D. | No output |
| Answer» C. 0.1 0.2 0.3 0.4 0.5 | |