Question d’entretien chez Help Scout

Please write a method in Java that determines if a string starts with an upper-case letter A-Z.

Réponse à la question d'entretien

Utilisateur anonyme

11 déc. 2019

In the method, checked if the ascii decimal value of the first character is 65 to 90 (A to Z).

1