Question:What is the primary difference between a method declared as static and a normal method?
A Static methods can only be called using the :: syntax and never from an instance
B Static methods do not provide a reference to $this
C Static methods cannot be called from within class instances
D Static methods don't have access to the self keyword
E There is no functional difference between a static and non-static method
+ AnswerB
+ Report