# Exercise 1

Will this program compile? What is output of this program? Do not use IDE to answer this question.

int num = 197;
if (num / 13 < 0)
{
  Console.WriteLine("Hello");
}
1
2
3
4
5
Last Updated: May 1, 2020, 3:26 PM