Upload Button Icon Add office photos

Filter interviews by

Zopsmart Technology Software Development Engineer II Interview Questions and Answers

Updated 12 Sep 2024

Zopsmart Technology Software Development Engineer II Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Worked on developing web applications

  • Answered by AI
  • Q2. Brief about existing project
  • Ans. 

    The existing project is a web application for online shopping.

    • The project uses React for the front-end and Node.js for the back-end.

    • It integrates with a payment gateway for processing transactions.

    • The project includes features like user authentication, product search, and order tracking.

  • Answered by AI
  • Q3. Coding question to revert the sentence
  • Q4. SQL query for fetching some info
  • Ans. 

    SQL query to fetch specific information from a database

    • Use SELECT statement to specify the columns you want to retrieve

    • Use FROM clause to specify the table from which to retrieve the data

    • Use WHERE clause to add conditions for filtering the data

    • Use JOIN clause to combine data from multiple tables if needed

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Question around priority queue
  • Q2. Decode strings leetcode
Round 2 - Technical 

(1 Question)

  • Q1. System design questions scenario based
Round 3 - Technical 

(1 Question)

  • Q1. Questions on multidimensional tree
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Leetcode Medium questions on hackerrank

Round 2 - One-on-one 

(3 Questions)

  • Q1. Kadane algorithm based question
  • Q2. Leetcode medium
  • Q3. Resume based questions
Round 3 - One-on-one 

(4 Questions)

  • Q1. Probability question math problem
  • Q2. Puzzle to solve
  • Q3. AI based question
  • Q4. 1 question to solve Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with DSA and communication skill
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Query question and 3 coding questions

Round 2 - Technical 

(4 Questions)

  • Q1. Basic oops , Java script and Networking questions.
  • Q2. What is object orienteered programming.
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Objects are instances of classes, which define the structure and behavior of the objects.

    • Encapsulation, inheritance, and polymorphism are key principles of object oriented programming.

    • Example: Java, C++, Python are popular languages that support object oriented programming.

  • Answered by AI
  • Q3. Different Events in java script
  • Ans. 

    Events in JavaScript are actions or occurrences that happen in the browser that the code can respond to.

    • Events can be triggered by user actions (like clicking a button), browser actions (like page load), or system events (like a timer expiring)

    • Event listeners are used to listen for and respond to events

    • Common events include click, mouseover, keydown, submit, etc.

  • Answered by AI
  • Q4. Event listeners
Round 3 - Coding Test 

Project , coding question, DBMS

Round 4 - HR 

(1 Question)

  • Q1. Basic personal details

Skills evaluated in this interview

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

2 DSA questions Both are from DP

Round 2 - Technical 

(2 Questions)

  • Q1. 2 Questions , 1 is DSA
  • Q2. Second question is Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise DSA more and give more and more interviews.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Pointless basic questions is what they asked
Round 2 - Technical 

(1 Question)

  • Q1. They had this round for hours together

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly do not attend interview at Pando. They make the interview process long and tedious. They had less budget despite knowing that they wasted my time and efforts on the whole the company is not well structured and their HR team is very poor. They are a typical unstructured startup company with poor work ethics and culture.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic dsa questions and java spring boot questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Bookmyshow design
  • Q2. Notification service design
  • Ans. 

    Design a notification service for sending alerts to users.

    • Use a scalable messaging system like Kafka or RabbitMQ to handle high volume of notifications.

    • Implement a notification queue to ensure reliable delivery of notifications.

    • Include support for different types of notifications such as email, SMS, and push notifications.

    • Allow users to customize their notification preferences and frequency.

    • Implement monitoring and log...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Mimic Dataframe Merge
  • Ans. 

    Implement a function to mimic the functionality of merging two DataFrames in Python.

    • Create a function that takes two DataFrames as input.

    • Merge the two DataFrames based on a common column or index.

    • Handle different types of joins like inner, outer, left, and right joins.

    • Return the merged DataFrame as output.

  • Answered by AI
  • Q2. Improve above case by case
Round 2 - Coding Test 

1 hour - Find longest palindromic substring

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

I applied via Referral and was interviewed in Sep 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 

60 Minutes coding test was there

Round 3 - Technical 

(5 Questions)

  • Q1. Worst experience ever, never apply for company in this, highly unstable company
  • Q2. Add two numbers in a linked list, don't apply
  • Ans. 

    Traverse the linked list and add the values of each node without using additional data structures.

    • Traverse the linked list while keeping track of the sum in a variable

    • Update the sum by adding the value of each node as you traverse the list

    • Handle carry over if the sum of two nodes is greater than 9

  • Answered by AI
  • Q3. Sort the array by using all sorting algorithms, don't join
  • Q4. Subset problem find all the subsets
  • Ans. 

    To find all subsets of a given set, use recursion to generate all possible combinations.

    • Use recursion to generate all possible combinations of including or excluding each element in the set.

    • Start with an empty subset and recursively add each element to create new subsets.

    • Each subset can be represented as an array of strings.

  • Answered by AI
  • Q5. LRU Cache problem, explain it and implement it
  • Ans. 

    LRU Cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • LRU Cache uses a combination of a doubly linked list and a hashmap to efficiently store and retrieve items.

    • When an item is accessed, it is moved to the front of the linked list to indicate it is the most recently used item.

    • If the cache is full, the least recently used item at the end of the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join, Worst Experience every

Skills evaluated in this interview

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

(1 Question)

  • Q1. 2 rounds, 2 coding questions in each round. Managerial round.

Zopsmart Technology Interview FAQs

How many rounds are there in Zopsmart Technology Software Development Engineer II interview?
Zopsmart Technology interview process usually has 1 rounds. The most common rounds in the Zopsmart Technology interview process are One-on-one Round.
How to prepare for Zopsmart Technology Software Development Engineer II interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Zopsmart Technology. The most common topics and skills that interviewers at Zopsmart Technology expect are Azure DevOps, Golang, NoSQL, AWS and Cloud Computing.
What are the top questions asked in Zopsmart Technology Software Development Engineer II interview?

Some of the top questions asked at the Zopsmart Technology Software Development Engineer II interview -

  1. SQL query for fetching some i...read more
  2. coding question to revert the sente...read more

Tell us how to improve this page.

Zopsmart Technology Software Development Engineer II Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
BigBasket Interview Questions
3.9
 • 356 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 180 Interviews
Snapdeal Interview Questions
3.8
 • 76 Interviews
Vyapar Interview Questions
3.5
 • 51 Interviews
Pepperfry Interview Questions
3.3
 • 31 Interviews
Classplus Interview Questions
3.4
 • 27 Interviews
Fleetx.io Interview Questions
3.8
 • 26 Interviews
View all
Zopsmart Technology Software Development Engineer II Salary
based on 47 salaries
₹11 L/yr - ₹18.5 L/yr
51% less than the average Software Development Engineer II Salary in India
View more details

Zopsmart Technology Software Development Engineer II Reviews and Ratings

based on 6 reviews

3.5/5

Rating in categories

4.0

Skill development

3.8

Work-life balance

3.2

Salary

3.7

Job security

3.3

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
85 salaries
unlock blur

₹8 L/yr - ₹14.5 L/yr

Software Development Engineer
82 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Software Developer
74 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Senior Software Engineer
51 salaries
unlock blur

₹11.7 L/yr - ₹31 L/yr

Software Development Engineer II
47 salaries
unlock blur

₹11 L/yr - ₹18.5 L/yr

Explore more salaries
Compare Zopsmart Technology with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm Mall

3.6
Compare

Snapdeal

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