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

      RBC

      Empresa activa

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre RBC | Ofertas de empleos en RBC | Sueldos en RBC | Beneficios en RBC
      Entrevistas de RBCEntrevistas para el puesto de Senior Applications Developer en RBCEntrevista de RBC


      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

      avatar
      BNP Paribas
      3.5★Remuneración y beneficios
      avatar
      HSBC
      3.7★Remuneración y beneficios
      avatar
      Bank of America
      3.8★Remuneración y beneficios
      avatar
      Barclays
      3.8★Remuneración y beneficios

      Entrevista de Senior Applications Developer

      10 mar 2018
      Candidato de entrevista anónimo
      Toronto, ON
      Oferta rechazada
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Envié una solicitud electrónica. El proceso duró 4 semanas. Acudí a una entrevista en RBC (Toronto, ON) en feb 2018

      Entrevista

      Interview process was good but really slow. Initially, after my application they sent "Screening Sample Test" . The tests contains 2 questions and after completing that they get back to me after 10 days. and schedule in person technical interview with 2 people. Interview was good but the development manager was so hard on the questions and he was more interested about what you don't know rather than what I know. But it was a good experience. There were around 4 technical exercises to go through. Questions was about passing a parameters by value and by reference. Whats the contains method in the list do. UML diagram based on the customer accounts and trade, find all the trades based on the customerId. SOLID principle and many more.

      Preguntas de entrevista [2]

      Pregunta 1

      private static string a = "first"; static void Method(string a) { a = "second"; } static void Main(string[] args) { Console.WriteLine(a); Method(a); Console.WriteLine(a); } What would be the output of the above? and what to do change it?
      1 respuesta

      Pregunta 2

      What would the count for the list of it. public class Test { string Data; int Id; public Test(int id, string data) { Data = data; Id = id; } } static void Main(string[] args) { List<Test> list = new List<Test>(); list.Add(new Test(10, "test")); var d = new Test(10, "test"); if (!list.Contains(d)) list.Add(d); Console.WriteLine("Count of the list is : " + list.Count); Console.ReadLine(); } } What to do to make count 1?
      2 respuestas
      4