Array
(
    [id] => 3
    [category] => C#
    [difficulty] => medium
    [question] => What will this code print?
    [code] => int x = 10;
int y = 20;

Console.WriteLine(x > y);
    [option_a] => TRUE
    [option_b] => FALSE
    [option_c] => 30
    [option_d] => ERROR
    [correct_option] => B
    [explanation] => The expression 10 > 20 is false.
    [points] => 200
)