From other posts in this forum , It looks like only a copy of instance methods are stored in the memory , along with the class itself. All instances of this class share this single copy.
By definition , static methods belong to a class and only one copy of it is shared by all instances. So it makes sense to internally store static methods with the class.
Would it be right to conclude that there is no difference between internal representation of static and instance methods.