Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Rooter Team. If you also belong to the team, you can get access from here

Rooter Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Rooter Senior Software Engineer Interview Questions and Answers for Freshers

Updated 5 Mar 2024

Rooter Senior Software Engineer Interview Experiences for Freshers

1 interview found

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

I applied via BigShyft and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Print 1 to N numbers using recursion.
  • Ans. 

    Print 1 to N numbers using recursion in C++.

    • Define a recursive function that takes an integer parameter N.

    • Base case: if N is less than 1, return.

    • Recursively call the function with N-1 until N becomes 1.

    • Print N in each recursive call.

  • Answered by AI
  • Q2. Struct vs Class, Enums
  • Q3. MVC, MVVM, VIPER
  • Q4. Some basic puzzle-based questions
Round 2 - One-on-one 

(3 Questions)

  • Q1. Advanced swift concepts
  • Q2. Memory management and ARC
  • Q3. Protocol, closures, value type, reference type
Round 3 - One-on-one 

(3 Questions)

  • Q1. Previous projects and technologies used
  • Q2. SSL Pinning, network call, network security etc.
  • Q3. Application security, local database, notifications, release management etc.
Round 4 - HR 

(1 Question)

  • Q1. Typical HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for swift basics.
Prepare for data structure problems.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Palindrome
  • Q2. Study basic coding
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions were pretty easy like on speed etc

Round 2 - Coding Test 

Coding questions were also easy like patterns code, reverse string just basics

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude only think out of box

Round 2 - One-on-one 

(2 Questions)

  • Q1. Static and final difference
  • Ans. 

    Static variables belong to the class itself, while final variables cannot be changed after initialization.

    • Static variables are shared among all instances of a class

    • Final variables cannot be reassigned once initialized

    • Static variables are initialized only once at the start of the program

    • Final variables must be initialized when declared

  • Answered by AI
  • Q2. Patterns problem
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. Checking english fluency

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good company, friendly HR and interviewer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

10 reasoning questions and 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Wap for factorial with recurrsion
  • Ans. 

    Factorial calculation using recursion in a programming language

    • Define a function that takes an integer as input

    • Base case: if input is 0, return 1

    • Recursive case: return input multiplied by factorial of input-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI
  • Q2. Opps and basic core Java questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple logic and maths based questions along with coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on string literals
  • Q2. Array vs arraylist
  • Ans. 

    Arrays are fixed in size, while ArrayLists can dynamically resize. Arrays are faster for accessing elements, while ArrayLists offer more flexibility.

    • Arrays have a fixed size, while ArrayLists can dynamically resize.

    • Arrays are faster for accessing elements, while ArrayLists offer more flexibility in terms of adding, removing, and manipulating elements.

    • Example: String[] namesArray = new String[5]; ArrayList<String>

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. My strength and weaknesses
  • Q2. Past work experiences if any
  • Ans. 

    I have worked as a software developer for 3 years at XYZ company.

    • Developed web applications using Java, Spring, and AngularJS

    • Collaborated with team members to design and implement new features

    • Participated in code reviews and testing processes

    • Resolved technical issues and provided support to end users

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
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 - Coding Test 

Basic coding test like palindrome, series,arrays

Round 3 - One-on-one 

(1 Question)

  • Q1. Logical questions,puzzle, behavioural round, introduction
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2023. There were 6 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Prepare aptitude well as some questions are tricky which consume our time. There are 20 questions in total. And most of them are mathematical numeric problems.

Round 3 - Coding Test 

This round is included in aptitude round in which you have to write down 3 coding problems which are easy one if you are moderate programmer

Round 4 - Technical 

(1 Question)

  • Q1. Java opps concepts, writing programs, logical reasoning questions, famous logical problems like water jug problem. Etc
Round 5 - HR 

(1 Question)

  • Q1. Your pros and cons, background information, etc
Round 6 - Behavioral 

(1 Question)

  • Q1. In this round director asks for logical questions, it's a chill round but there are some brainstorming questions which checks you thinking capacity. I will not disclose the questions but hint is "Thinking...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Easy applitude test simple question on arithmetic

Round 2 - Coding Test 

Simple coding like Fibonacci

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Systematic interview test

Round 2 - One-on-one 

(1 Question)

  • Q1. What is java and oops concepts
  • Ans. 

    Java is a popular programming language used for developing various applications. OOPs concepts refer to Object-Oriented Programming principles.

    • Java is a high-level, class-based, object-oriented programming language.

    • OOPs concepts include Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation refers to bundling data and meth...

  • Answered by AI

Rooter Interview FAQs

How many rounds are there in Rooter Senior Software Engineer interview for freshers?
Rooter interview process for freshers usually has 4 rounds. The most common rounds in the Rooter interview process for freshers are One-on-one Round and HR.
What are the top questions asked in Rooter Senior Software Engineer interview for freshers?

Some of the top questions asked at the Rooter Senior Software Engineer interview for freshers -

  1. Print 1 to N numbers using recursi...read more
  2. Application security, local database, notifications, release management e...read more
  3. Protocol, closures, value type, reference t...read more

Tell us how to improve this page.

Rooter Senior Software Engineer Interview Process for Freshers

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

IDZ Digital Interview Questions
3.8
 • 22 Interviews
Zupee Interview Questions
3.8
 • 15 Interviews
ChicMic Interview Questions
4.5
 • 11 Interviews
Gameberry Labs Interview Questions
4.2
 • 9 Interviews
Kwalee India Interview Questions
2.9
 • 7 Interviews
Games2Win Interview Questions
2.4
 • 7 Interviews
FRND Interview Questions
2.1
 • 6 Interviews
Gamix Labs Interview Questions
3.9
 • 5 Interviews
View all
Community Manager
10 salaries
unlock blur

₹5.4 L/yr - ₹7.8 L/yr

Social Media Manager
7 salaries
unlock blur

₹5.4 L/yr - ₹5.4 L/yr

VP-Finance
4 salaries
unlock blur

₹65 L/yr - ₹75 L/yr

Marketing Manager
4 salaries
unlock blur

₹27.5 L/yr - ₹28 L/yr

Content Creator
3 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

Explore more salaries
Compare Rooter with

ChicMic

4.5
Compare

Sportz Interactive

3.1
Compare

MyTeam11

4.7
Compare

Green Gold Animation

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview