jamccoy378 jamccoy378 27-12-2023 Computers and Technology contestada What is the output of the following code?int n = 5; int a = 6; if (n >= 5) if (n > 5 || a == 2) cout << a * 2; else cout << n * 2; a. 10 b. 12 c. 6 d. None of the above