Upload Button Icon Add office photos
Engaged Employer

i

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

Zopper Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 219 Reviews

Filter interviews by

Zopper Senior Software Engineer Interview Questions and Answers

Updated 27 Mar 2024

Zopper Senior Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

Basic data structure and medium level coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic / advance level questions of python django with detailed project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on medium level of ds/algo and if you have 1-2 experience in python/django, then you are good

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Three coding problems were asked one was to print frequency of each character in a string, second was also similar to this problem unable to recall it and third problem was given an array of string and range from L to R find the nth character if all strings from L to R is concatenated and sorted. Apart from these three coding problems there were 10 easy MCQ's.

Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions on java and spring boot, annotations, oops concept.
  • Q2. Code LRU cache(with no updates), just to implement push and pop operation with given window size of 4.
Round 3 - Technical 

(1 Question)

  • Q1. It was a design round where I was asked to write class models of a in memory session management system without using tools like redis.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Backend Questions regarding
  • Q2. UI Questions regarding Angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. 1) OOP Concepts
  • Q2. Difference between Abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to provide a common base for multiple classes, while interfaces are used to define a contract for ...

  • Answered by AI
  • Q3. Mysql Concepts and Mysql queries
  • Q4. Logical questions on Array and String Functions in PHP
  • Q5. File handling functions such as fread, fopen, fclose etc and logical string function questions on file data.
Round 2 - Technical 

(5 Questions)

  • Q1. All Scenario based questions
  • Q2. OOP Concepts in deep
  • Ans. 

    OOP Concepts refer to the principles of Object-Oriented Programming, including encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

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

    • Polymorphism: The ability for objects of different classes to respond to the same message in different ways...

  • Answered by AI
  • Q3. Software design pattern related questions
  • Q4. Small Logical programs
  • Q5. Database queries in deep
  • Ans. 

    Database queries involve retrieving, updating, and manipulating data stored in a database.

    • Database queries are used to retrieve specific data from a database based on certain criteria.

    • Queries can also be used to update existing data or insert new data into the database.

    • SQL (Structured Query Language) is commonly used to write database queries.

    • Examples of database queries include SELECT, INSERT, UPDATE, and DELETE state

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse link list
  • Q2. Count number of digits
  • Ans. 

    Count the number of digits in a given string

    • Iterate through each character in the string

    • Check if the character is a digit using isdigit() function

    • Increment a counter if the character is a digit

    • Return the final count of digits

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Apache Kafka?
  • Ans. 

    Apache Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Apache Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It allows for the publishing and subscribing to streams of records, similar to a message queue.

    • Kafka is often used for log aggregation, stream processing, event sourcing, and real-time analytics.

    • It p...

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

(1 Question)

  • Q1. How do you manage stress?

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

It started with basic introduction, than move ahead with Java, Spring boot question in the end, he asked one leetcode medium question based on DP . Ques : Find a minimum number of jumps required to reach the end of the array, and each index , it can jump arr[index] time at max, you need to calculate minimum number of steps required to reach at the end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Java , Spring boot and Data structures
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(1 Question)

  • Q1. Design and code a zoo management system.
  • Ans. 

    A zoo management system to track animals, enclosures, staff, and visitor information.

    • Create classes for animals, enclosures, staff, and visitors

    • Implement functions for adding, updating, and deleting records

    • Include features for scheduling feeding times, cleaning enclosures, and managing staff shifts

  • Answered by AI
Round 2 - Coding Test 

Standard DSA questions

Round 3 - HR 

(1 Question)

  • Q1. Standard HR stuff.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to be injected with their dependencies rather than creating them internally.

    • Dependency injection helps to decouple the code and improve testability and maintainability.

    • It promotes loose coupling by allowing objects to depend on abstractions instead of concrete implementations.

    • There are three common types of dependency injection: constructor injection, setter ...

  • Answered by AI
  • Q2. What is store procedure
  • Ans. 

    A stored procedure is a precompiled set of SQL statements that can be executed on a database server.

    • Stored procedures are used to encapsulate and execute complex database operations.

    • They can be written in various programming languages like SQL, PL/SQL, T-SQL, etc.

    • Stored procedures can accept input parameters and return output values.

    • They can be used to improve performance by reducing network traffic and optimizing quer...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have called for Face to Face discussion interview only asked 2 question. I have given correct answer all the time he was on call an dlookig into his system and then I got to know that I am rejected ..I have told my recruiter same and written email to her. I was curious to join SH but my interview process given me very bad impression.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Current role and responsibilities
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It will be a scenario based implementation

Zopper Interview FAQs

How many rounds are there in Zopper Senior Software Engineer interview?
Zopper interview process usually has 2 rounds. The most common rounds in the Zopper interview process are Coding Test and Technical.

Tell us how to improve this page.

Fast track your campus placements

View all
Zopper Senior Software Engineer Salary
based on 30 salaries
₹13.2 L/yr - ₹34.5 L/yr
30% more than the average Senior Software Engineer Salary in India
View more details

Zopper Senior Software Engineer Reviews and Ratings

based on 3 reviews

1.6/5

Rating in categories

1.7

Skill development

1.6

Work-Life balance

2.1

Salary & Benefits

2.1

Job Security

1.7

Company culture

1.6

Promotions/Appraisal

1.7

Work Satisfaction

Explore 3 Reviews and Ratings
Relationship Manager
64 salaries
unlock blur

₹2.3 L/yr - ₹5 L/yr

Software Engineer
53 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Territory Sales Manager
33 salaries
unlock blur

₹3.2 L/yr - ₹6.5 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹13.1 L/yr - ₹34.5 L/yr

Associate Software Engineer
21 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Explore more salaries
Compare Zopper with

Tech Mahindra

3.6
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
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