Which of the following is an example of a pseudocode comment to represent a player losing if they roll an 11?
a.) // If the rolled value is equal to 11
// Set player status to lose
b.) // if rolledValue == 11:
playerStatus = "lose"
c.) // if rolledValue == 11:
// pass
d.) // If the rolled value is equal to 11
Set player status to lose