For the given snippet find out the correct answer.
//base class
class base;
int a;
int c;
function display();
begin
$display ("a=%d c=%d", a, c);
end
endfunction
endclass
my_program.sv
//program block
program my_program();
initial
begin
base b;
b=new;
b.a=10;
b.c=20;
b.display();
end
endprogram