Upload Button Icon Add office photos
Engaged Employer

i

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

SkilloVilla Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 93 Reviews

Filter interviews by

SkilloVilla Backend Developer Interview Questions and Answers

Updated 6 Feb 2024

SkilloVilla Backend Developer Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 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 - Coding Test 

Duration: 1hr
Platform: CoderByte
3 Medium level questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Given a 2D Array with 0s and 1s. Find the greatest row. (Best time complexity: O(n logn))
  • Ans. 

    Find the row with the most 1s in a 2D array efficiently.

    • Iterate through each row and count the number of 1s in each row.

    • Keep track of the row with the highest count of 1s.

    • Return the index of the row with the most 1s.

  • Answered by AI
  • Q2. Given a string of alpha characters. Find the longest substring containing only unique characters. (Best time complexity: O(n))
  • Ans. 

    Use sliding window approach to find longest substring with unique characters.

    • Initialize start and end pointers to track current substring

    • Use a hashmap to store the index of each character in the substring

    • Update start pointer when a duplicate character is found

    • Keep track of the longest substring length and indices

    • Repeat until end pointer reaches the end of the string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice medium level questions and system design. There are total 4 rounds but I got rejected from 2nd round. Last round will be of system design with CTO.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

3 coding questions 2 easy and one tough.

Round 2 - Technical 

(1 Question)

  • Q1. 2 questions were first logic were discussed and solutions were coded then

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, yo ... read more
Q2. Reverse Rows of a Matrix Problem Statement You are given a matrix ... read more
asked in Simpplr
Q3. Array Sum Calculation Calculate the sum of all elements in an arr ... read more
Q4. Given 9 ball all of which weigh the same except for one, what is ... read more
asked in Simpplr
Q5. Remove Duplicates from String Problem Statement You are provided ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 Leetcode style questions , 2 medium , 1 hard .

Round 2 - Technical 

(1 Question)

  • Q1. Design a cab booking system using oops
  • Ans. 

    A cab booking system designed using OOP principles

    • Create classes for Cab, Customer, Driver, and Booking

    • Use inheritance and polymorphism to handle different types of cabs and bookings

    • Implement methods for booking a cab, assigning a driver, and calculating fare

    • Use encapsulation to protect data and ensure data integrity

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Given two soted arrays merge them from a single sorted array with all items in non-decreassing order

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA Medium difficulty question Schema Design Low level design Amazon reviews page
Round 1 - One-on-one 

(1 Question)

  • Q1. Number of islands code
  • Ans. 

    Count the number of islands in a 2D grid of 1s and 0s.

    • Use DFS or BFS to traverse the grid and mark visited cells.

    • Count the number of times traversal starts from an unvisited 1.

    • Consider edge cases like empty grid, all 0s or all 1s.

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. It was a simple design round and some technical questions on skills mentioned in your resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear about all the things you have worked on in your company and the reason for the approach being used and keep your dsa strong.

Skills evaluated in this interview

Round 1 - Aptitude Test 

MCQs and 1 coding question

Round 2 - Technical 

(1 Question)

  • Q1. Delete one child nodes,
  • Ans. 

    To delete one child node, we need to identify the parent node and remove the child node from its list of children.

    • Identify the parent node of the child node to be deleted

    • Remove the child node from the parent node's list of children

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project and internship discussion And one question discussion on how data is stored in db
Round 4 - HR 

(1 Question)

  • Q1. Nothing nothing nothing nothing

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck _-----------------_____

Skills evaluated in this interview

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. In INTERVIEW they gave me a coding question to code it and explain its abest appproach and how it is efficient in terms of time complexity and space complexity
  • Q2. Some basic questions on mongoDB and nodeJS

Interview Preparation Tips

Interview preparation tips for other job seekers - good with basics of your known technology
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 Leetcode style questions , 2 medium , 1 hard .

Round 2 - Technical 

(1 Question)

  • Q1. Design a cab booking system using oops
  • Ans. 

    A cab booking system designed using OOP principles

    • Create classes for Cab, Customer, Driver, and Booking

    • Use inheritance and polymorphism to handle different types of cabs and bookings

    • Implement methods for booking a cab, assigning a driver, and calculating fare

    • Use encapsulation to protect data and ensure data integrity

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Given two soted arrays merge them from a single sorted array with all items in non-decreassing order

SkilloVilla Interview FAQs

How many rounds are there in SkilloVilla Backend Developer interview?
SkilloVilla interview process usually has 2-3 rounds. The most common rounds in the SkilloVilla interview process are Coding Test, Resume Shortlist and One-on-one Round.
What are the top questions asked in SkilloVilla Backend Developer interview?

Some of the top questions asked at the SkilloVilla Backend Developer interview -

  1. Given a string of alpha characters. Find the longest substring containing only ...read more
  2. Given a 2D Array with 0s and 1s. Find the greatest row. (Best time complexity: ...read more
  3. 2 questions were first logic were discussed and solutions were coded t...read more

Tell us how to improve this page.

SkilloVilla Backend Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
SkilloVilla Backend Developer Salary
based on 5 salaries
₹8 L/yr - ₹11 L/yr
7% more than the average Backend Developer Salary in India
View more details

SkilloVilla Backend Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Business Development Associate
18 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Data Analyst
10 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Associate Product Manager
7 salaries
unlock blur

₹9 L/yr - ₹17 L/yr

Associate Data Analyst
7 salaries
unlock blur

₹4.5 L/yr - ₹5.2 L/yr

Learning Consultant
6 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Explore more salaries
Compare SkilloVilla with

BYJU'S

3.1
Compare

upGrad

3.7
Compare

Unacademy

3.0
Compare

Simplilearn

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