✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Considere o seguinte excerto de um programa em C#:
public class Diretor : Pessoa { private int premio = 50; public int Premio { get { return this.premio; } set { this.premio = value; } } public new decimal CalcularVendas() { decimal valorUnitario = 25;
Selecione a afirmação correta: