Computer Applications

Write down the syntax to return the first occurrence of 'a' in the word "applications".

Java String Handling

50 Likes

Answer


int res = "applications".indexOf('a');

Answered By

31 Likes


Related Questions