Question:which of the following is the corect way of specifying default value?
A Function GetDiscount($Type = “Special”) {………}
B Function GetDiscount(Type := “Special”) {………}
C Function GetDiscount($Type: = “Special”) {………}
D Function GetDiscount($Type : “Special”) {………}
+ AnswerB
+ Report