Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      RBC

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur RBC | Offres d’emploi chez RBC | Salaires chez RBC | Avantages sociaux chez RBC
      Entretiens chez RBCEntretiens d’embauche pour Senior Applications Developer chez RBCEntretien chez RBC


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Senior Applications Developer

      10 mars 2018
      Candidat à l'entretien anonyme
      Toronto, ON
      Offre refusée
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé en ligne. Le processus a pris 4 semaines. J'ai passé un entretien chez RBC (Toronto, ON) en févr. 2018

      Entretien

      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.

      Questions d'entretien [2]

      Question 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 réponse

      Question 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 réponse(s)
      4