Which of the following statements declares a named constant field bb? last String bb = "To be, or not to be"; final char
Posted: Thu Jul 14, 2022 2:28 pm
Which of the following statements declares a named constant field bb? last String bb = "To be, or not to be"; final char bb= 'To be, or not to be'; final String bb = "To be, or not to be"; const String bb= "To be, or not to be";