Which Among The Following Is The Correct Syntax To Access #1088
Which among the following is the correct syntax to access static data member without using member function?
This multiple choice question (MCQ) is related to the book/course
gs gs111 OOP Object Oriented Programming Java.
It can also be found in
gs gs111 Exception Handling & Static Class Members - OOPs MCQ: Static Data Members - Quiz No.1.
Which among the following is the correct syntax to access static data member without using member function?
className -> staticDataMember;
className :: staticDataMember;
className : staticDataMember;
className . staticDataMember;