Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empresas

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Brainbox Consulting

      ¿Esta es tu empresa?

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre Brainbox Consulting | Ofertas de empleos en Brainbox Consulting | Sueldos en Brainbox Consulting | Beneficios en Brainbox Consulting
      Entrevistas de Brainbox ConsultingEntrevistas para el puesto de BI Consultant en Brainbox ConsultingEntrevista de Brainbox Consulting


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empresas

      • Cuenta gratuita de empresa
      • Centro de empresas

      Información

      • Ayuda
      • Normas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de consentimiento de cookies

      Trabaja con nosotros

      • Anunciantes
      • Empleo
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. «Glassdoor», «Worklife Pro», «Bowls» y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información de primera mano.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Las mejores empresas en cuanto a «Remuneración y beneficios» cerca de ti

      SelfEmployed.com
      3.9★Remuneración y beneficios
      avatar
      KPMG
      3.6★Remuneración y beneficios
      avatar
      Deloitte
      3.5★Remuneración y beneficios
      avatar
      TP
      4.3★Remuneración y beneficios

      Entrevista de BI Consultant

      30 abr 2014
      Candidato de entrevista anónimo
      Fremont
      Sin oferta
      Experiencia neutra
      Entrevista normal

      Solicitud

      Solicité el puesto a través de un captador. Acudí a una entrevista en Brainbox Consulting (Fremont) en abr 2014

      Entrevista

      Initial contact by email. Very enthusiastic. Interview was not people facing.

      Preguntas de entrevista [1]

      Pregunta 1

      Interview went as follows: You're guided to a room on the basement floor (where there's a futon and a futon bed along with a conference table with chairs) and given 4 papers stapled together. The first two papers have a question each. First, you have to write a query that will return the top 5 products sold by any given sales representative in the last six months, with the total sales amounts listed in descending order. Second, you are asked to identify the data issues confronting a consulting firm hired to build the a coin collector that is going to be installed at the entrance to the UN. The coin collector can take all currencies. Every time $100 USD has been collected from any country, a bell will ring and someone will come and remove the coins. For 10 minute period each day the coin collector will be off line and connected to the internet. The query to satisfy the first part of the two part question was: --query ;with cte as ( select sum(salesamt) over (partition by salesrep, product order by salesrep) as sumOfSalesAmt, salesrep, product from sales s join salesrep sr on s.sid=sr.sid join product p on p.pid=s.pid where s.qty >= 1 group by salesrep, product, salesamt ), cte1 as ( select rank() over (partition by salesrep order by sumOfSalesAmt desc) as rank, sumOfSalesAmt, salesrep, product from cte ) select * from cte1 where rank <=5; ---query alternative (other alternatives possible including cross apply) select salesrep, product, sum(salesamt) as SumSalesAmt from sales s join product p on s.pid = p.pid join salesrep sr on sr.sid = s.sid where s.qty >= 1 group by product, salesrep order by salesrep, sum(salesamt) desc;
      Responder pregunta