Pergunta de entrevista da empresa GlobalLogic

2 round he asked few questions related to output of few programs basic of core java. Asked us to write a program on finding number of vowels in a string and string reversal.

Resposta da entrevista

Sigiloso

6 de fev. de 2022

int count = 0; Pattern p1 = Pattern.compile("[a|e|i|o|u]"); for(int i =0;i

1