Engineering Full Stack Apps with Java and JavaScript
Which of these statements are true?
Select 2 options
A. A static method can call other non-static methods in the same class by using the 'this' keyword.
B. A class may contain both static and non-static variables and both static and nonstatic methods.
C. Each object of a class has its own copy of each non-static member variable.
D. Instance methods may access local variables of static methods.
E. All methods in a class are implicitly passed a 'this' parameter when called.