Q. What is the correct syntax for checking the value of “c”? (A) if (c == "XYZ") then { } else { } (B) if (c = "XYZ") then { } else { } (C) if (c == "XYZ") { } else { } (D) if (c = "XYZ") { } else { } ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) if (c == "XYZ") { } else { }