Pergunta de entrevista da empresa Yodlee

Describe oops concept.What you know about collections.3rd highest salary.find only numbers in alphanumeric string,remove space with in word in string.which is the best way to retrieve using hashmap.how to make immutable class,all methods of object class

Respostas da entrevista

Sigiloso

14 de abr. de 2016

String yodlee = "Founded by venkat Rangan"; yodlee = yodlee.replaceAll(" ",""); System.out.println(yodlee);

1

Sigiloso

14 de abr. de 2016

Methods of object class - clone, hashcode, equals, getclass, wait, notify, notifyall, toString, finalize

1

Sigiloso

14 de abr. de 2016

select ename, mid, salary from( select ename,mid,salary,ROWNUM from employee order by salary desc) where ROWNUM= 3;

Sigiloso

14 de abr. de 2016

Immutable class: Constructor - Final Instance variables - Final Only getters for Instance Variables