Computer Applications

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

Java String Handling

57 Likes

Answer


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

Answered By

36 Likes


Related Questions