Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      RBC

      Azienda coinvolta

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su RBC | Offerte di lavoro di RBC | Stipendi di RBC | Benefit di RBC
      Colloqui di RBCColloqui per Senior Applications Developer presso RBCColloquio di RBC


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Le migliori aziende per "stipendio e benefit" vicino a te

      avatar
      Standard Chartered Bank
      3.5★Stipendio e benefit
      avatar
      Barclays
      3.8★Stipendio e benefit
      avatar
      Absa
      3.7★Stipendio e benefit
      avatar
      Standard Bank Group
      4.1★Stipendio e benefit

      Colloquio per Senior Applications Developer

      10 mar 2018
      Candidato anonimo a colloquio
      Toronto, ON
      Offerta rifiutata
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura online. La procedura ha richiesto 4 settimane. Ho sostenuto un colloquio presso RBC (Toronto, ON) nel mese di feb 2018

      Colloquio

      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.

      Domande di colloquio [2]

      Domanda 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 risposta

      Domanda 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 risposte
      4