Upload Button Icon Add office photos

Filter interviews by

Royal Bank Of Canada Software Engineer Interview Questions and Answers for Freshers

Updated 17 Jan 2023

Royal Bank Of Canada Software Engineer Interview Experiences for Freshers

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. About projects in resume
  • Q2. Resume related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well and be confident speak properly in the interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Group Discussion 

What is the company role and what going on this company

Round 3 - Group Discussion 

What is the salary in this company

Round 4 - Coding Test 

What is the coding test I don't know pls give me explain

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company, good feeling in this company, ☺️ and thank u sir.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. MVC , C#, ASP.net
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test carried 7 sections of aptitude with no negative markings and the questions were also easy with time duration of 1 hours which was to be used for the coding round also

Round 2 - Coding Test 

Basic understanding was checked, if basics are clear of DSA and computer science fundamentals then very easy to crack

Interview Preparation Tips

Interview preparation tips for other job seekers - make sure your basics and foundation of DSA is very thorough
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed before Oct 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions about Resume
  • Q2. High Level Discussion about tools like Kafka, Redis, Mongo
Round 2 - Coding Test 

Design a working nodejs portfolio platform with api's and some condition

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have a hand on experience about nodejs
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Array problem related to

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic of nodejs & explain how will you build stock portfolio system

Interview Preparation Tips

Interview preparation tips for other job seekers - Problem solving is the major focus
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

What is the company role and what going on this company

Round 3 - Group Discussion 

What is the salary in this company

Round 4 - Coding Test 

What is the coding test I don't know pls give me explain

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company, good feeling in this company, ☺️ and thank u sir.

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 100 minutes
Round difficulty - Easy

Test started at 04:00 PM sharp and complete the same by 06:00 PM.
The test duration is 1 hour 40 minutes.
Environment (Amcat) is user friendly.
Web cam and mic were enabled

  • Q1. Longest Palindromic Subsequence

    You have been given a string ‘A’ consisting of lower case English letters. Your task is to find the length of the longest palindromic subsequence in ‘A’.

    A subsequence is ...

  • Ans. Recursive Approach

    The main idea behind this approach is to use recursion. The idea is to compare the first character of the string A[i..j] with its last character. There are two possibilities:

    1. If the first character of the string is the same as the last character, we include first and last characters in the palindrome and do a recursive call for the remaining substring A[i + 1, j - 1].
    2. If the last character of the string...
  • Answered by CodingNinjas
  • Q2. Ways To Make Coin Change

    You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a cha...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered by CodingNinjas
Round 2 - Telephonic Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Hard

Interview stared at 11:00 am and went for 90 min.
Interview was held in zoom
Environment was very much user friendly

  • Q1. Maximum Sum of nodes in a binary tree such that no two nodes are adjacent

    You have been given a binary tree with an integer value associated to each node. You are supposed to choose a subset of these nodes...

  • Ans. Using Memoization

    Keeping in mind the fact that both node and its children can not be considered for the maximum sum at the same time, we know that if we take a node into our sum, then we will directly call recursively for its grandchildren, OR if we don't take the node into our consideration, we will call for its child nodes and finally consider the maximum sum from both these results.

     

    Considering the above idea, ...

  • Answered by CodingNinjas
  • Q2. Basic Puzzles

    There are 3 mislabeled jars, with apple and oranges in the first and second jar respectively. The third jar contains a mixture of apples and oranges. You can pick as many fruits as required to...

Interview Preparation Tips

Professional and academic backgroundI completed Civil Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in BangaloreEligibility criteriaabove 7 cgpa, all branches were allowedFidelity International interview preparation:Topics to prepare for the interview - Data Structures, hashmap, linked list, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, array, 2-pointer problemsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : practice on gfg and coding ninjas
Tip 2 : compete on codechef and codeforces
Tip 3 : learn DSA and practice regularly
 

Application resume tips for other job seekers

Tip 1 : put your entire valuable experience in brief
Tip 2 : put the handle of you competitive coding profiles
Tip 3 : try to put those things that really attracts the recruiter, will be better if your past experiences relates to the company

Final outcome of the interviewSelected

Skills evaluated in this interview

Royal Bank Of Canada Interview FAQs

How many rounds are there in Royal Bank Of Canada Software Engineer interview for freshers?
Royal Bank Of Canada interview process for freshers usually has 2 rounds. The most common rounds in the Royal Bank Of Canada interview process for freshers are Resume Shortlist and Technical.

Tell us how to improve this page.

Royal Bank Of Canada Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

4.0

Work-Life balance

3.0

Salary & Benefits

4.0

Job Security

3.0

Company culture

2.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Product Manager
5 salaries
unlock blur

₹15 L/yr - ₹40 L/yr

Director
5 salaries
unlock blur

₹40 L/yr - ₹75 L/yr

Banking Advisor
5 salaries
unlock blur

₹20 L/yr - ₹40 L/yr

Data Analyst
4 salaries
unlock blur

₹6 L/yr - ₹23.4 L/yr

Sales Manager
4 salaries
unlock blur

₹4.5 L/yr - ₹5.1 L/yr

Explore more salaries
Compare Royal Bank Of Canada with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

State Bank of India

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview