(10%)
Determine whether the following code is correct or not. If it is
correct, predict its output. If it is incorrect, point out the
mistake(s).
#include <iostream>
using std::cout;
int main()
{
int i = 105;
if (i % 2)
if (i < 100) cout << "Smaller than 100.\n";
else cout << "Greater than or equal to 100.\n";
else
cout << "It is an even number.\n";
return 0;
}