MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output for the following code ? static void Main(string[] args) { int a = 15, b = 10, c = 1; if (Convert.ToBoolean(a) && (b > c)) { Console.WriteLine("cquestionbank"); } else { break; } } |
| A. | Cquestionbank |
| B. | It will print nothing |
| C. | Compile time error |
| D. | Run time error |
| Answer» D. Run time error | |