Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      RBC

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: RBC reviews | RBC jobs | RBC salaries | RBC benefits | RBC conversations
      RBC interviewsRBC Senior Applications Developer interviewsRBC interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Top companies for "Compensation and Benefits" near you

      avatar
      Scotiabank
      3.7★Compensation and benefits
      avatar
      CIBC
      3.6★Compensation and benefits
      avatar
      Inter-American Development Bank
      3.8★Compensation and benefits
      avatar
      Central Bank
      3.7★Compensation and benefits

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Senior Applications Developer Interview

      10 Mar 2018
      Anonymous interview candidate
      Toronto, ON
      Declined offer
      Positive experience
      Difficult interview

      Application

      I applied online. The process took 4 weeks. I interviewed at RBC (Toronto, ON) in Feb 2018

      Interview

      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.

      Interview questions [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 Answer

      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 Answers
      4