I applied through other source. The process took 4 weeks. I interviewed at AdAsia Communications (Berlin) in Sep 2014
Interview
Bi Consulting questions one telephone interview, presentation and customer meet and a qualification tests
. What is referential Integrity?
2. Display the names of the employees who earn highest salary in their respective departments.
SQL> select ename,sal,deptno from emp e where sal in(select max(sal) from emp m where m.deptno = e.deptno);
3. Find out top 5 earners of company.
SQL> select * from (select * from emp order by sal desc) where rownum <= 5;
4. Display the Employee name and Managers names.
SQL> select e.ename employee, m.ename manager from emp e, emp m where m.empno=e.mgr;
I applied online. The process took 2 weeks. I interviewed at AdAsia Communications (Englewood, NJ) in May 2015
Interview
I went in and met with the manager. He basically went through my resume and told me what the internship program looks like. It was a very easy interview. No hard questions at all. I never received any response from them even if I wrote a follow-up email.