Multiple choice technology programming languages Which statement will print the capital attribute of the $kansas object? print ("capital"=>$kansas); print {$kansas}=>(capital); print (capital)<={$kansas}; print $kansas->{"capital"}; Reveal answer Fill a bubble to check yourself D Correct answer Explanation In Perl, object attributes stored in a hash reference are accessed using the arrow operator '->' followed by the key in braces, as in $kansas->{"capital"}.